File tree Expand file tree Collapse file tree 4 files changed +0
-120
lines changed Expand file tree Collapse file tree 4 files changed +0
-120
lines changed Original file line number Diff line number Diff line change @@ -141,7 +141,6 @@ if test "$PHONGO" != "no"; then
141
141
PHONGO_BSON_CLASSES="\
142
142
src/BSON/Type.c \
143
143
src/BSON/Binary.c \
144
- src/BSON/DBRef.c \
145
144
src/BSON/Javascript.c \
146
145
src/BSON/MaxKey.c \
147
146
src/BSON/MinKey.c \
Original file line number Diff line number Diff line change @@ -1398,7 +1398,6 @@ PHP_MINIT_FUNCTION(phongo)
1398
1398
1399
1399
PHP_MINIT (Type )(INIT_FUNC_ARGS_PASSTHRU );
1400
1400
PHP_MINIT (Binary )(INIT_FUNC_ARGS_PASSTHRU );
1401
- PHP_MINIT (DBRef )(INIT_FUNC_ARGS_PASSTHRU );
1402
1401
PHP_MINIT (Javascript )(INIT_FUNC_ARGS_PASSTHRU );
1403
1402
PHP_MINIT (MaxKey )(INIT_FUNC_ARGS_PASSTHRU );
1404
1403
PHP_MINIT (MinKey )(INIT_FUNC_ARGS_PASSTHRU );
Original file line number Diff line number Diff line change @@ -130,9 +130,6 @@ typedef struct {
130
130
int data_len ;
131
131
int subtype ;
132
132
} php_phongo_binary_t ;
133
- typedef struct {
134
- zend_object std ;
135
- } php_phongo_dbref_t ;
136
133
typedef struct {
137
134
zend_object std ;
138
135
} php_phongo_int32_t ;
@@ -194,7 +191,6 @@ extern PHONGO_API zend_class_entry *php_phongo_writeresult_ce;
194
191
195
192
extern PHONGO_API zend_class_entry * php_phongo_type_ce ;
196
193
extern PHONGO_API zend_class_entry * php_phongo_binary_ce ;
197
- extern PHONGO_API zend_class_entry * php_phongo_dbref_ce ;
198
194
extern PHONGO_API zend_class_entry * php_phongo_int32_ce ;
199
195
extern PHONGO_API zend_class_entry * php_phongo_int64_ce ;
200
196
extern PHONGO_API zend_class_entry * php_phongo_javascript_ce ;
@@ -225,7 +221,6 @@ PHP_MINIT_FUNCTION(WriteResult);
225
221
226
222
PHP_MINIT_FUNCTION (Type );
227
223
PHP_MINIT_FUNCTION (Binary );
228
- PHP_MINIT_FUNCTION (DBRef );
229
224
PHP_MINIT_FUNCTION (Javascript );
230
225
PHP_MINIT_FUNCTION (MaxKey );
231
226
PHP_MINIT_FUNCTION (MinKey );
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments