2626
2727zend_class_entry * php_phongo_cursorid_ce ;
2828
29- /* {{{ proto string MongoDB\Driver\CursorID ::__toString()
30- Returns the string representation of the CursorID */
31- static PHP_METHOD (CursorID , __toString )
29+ /* {{{ proto string MongoDB\Driver\CursorId ::__toString()
30+ Returns the string representation of the CursorId */
31+ static PHP_METHOD (CursorId , __toString )
3232{
3333 php_phongo_cursorid_t * intern ;
3434 char * tmp ;
@@ -46,19 +46,19 @@ static PHP_METHOD(CursorID, __toString)
4646 efree (tmp );
4747} /* }}} */
4848
49- /* {{{ MongoDB\Driver\CursorID function entries */
50- ZEND_BEGIN_ARG_INFO_EX (ai_CursorID_void , 0 , 0 , 0 )
49+ /* {{{ MongoDB\Driver\CursorId function entries */
50+ ZEND_BEGIN_ARG_INFO_EX (ai_CursorId_void , 0 , 0 , 0 )
5151ZEND_END_ARG_INFO ()
5252
5353static zend_function_entry php_phongo_cursorid_me [] = {
54- PHP_ME (CursorID , __toString , ai_CursorID_void , ZEND_ACC_PUBLIC |ZEND_ACC_FINAL )
55- ZEND_NAMED_ME (__construct , PHP_FN (MongoDB_disabled___construct ), ai_CursorID_void , ZEND_ACC_PRIVATE |ZEND_ACC_FINAL )
56- ZEND_NAMED_ME (__wakeup , PHP_FN (MongoDB_disabled___wakeup ), ai_CursorID_void , ZEND_ACC_PUBLIC |ZEND_ACC_FINAL )
54+ PHP_ME (CursorId , __toString , ai_CursorId_void , ZEND_ACC_PUBLIC |ZEND_ACC_FINAL )
55+ ZEND_NAMED_ME (__construct , PHP_FN (MongoDB_disabled___construct ), ai_CursorId_void , ZEND_ACC_PRIVATE |ZEND_ACC_FINAL )
56+ ZEND_NAMED_ME (__wakeup , PHP_FN (MongoDB_disabled___wakeup ), ai_CursorId_void , ZEND_ACC_PUBLIC |ZEND_ACC_FINAL )
5757 PHP_FE_END
5858};
5959/* }}} */
6060
61- /* {{{ MongoDB\Driver\CursorID object handlers */
61+ /* {{{ MongoDB\Driver\CursorId object handlers */
6262static zend_object_handlers php_phongo_handler_cursorid ;
6363
6464static void php_phongo_cursorid_free_object (phongo_free_object_arg * object TSRMLS_DC ) /* {{{ */
@@ -131,7 +131,7 @@ void php_phongo_cursorid_init_ce(INIT_FUNC_ARGS) /* {{{ */
131131{
132132 zend_class_entry ce ;
133133
134- INIT_NS_CLASS_ENTRY (ce , "MongoDB\\Driver" , "CursorID " , php_phongo_cursorid_me );
134+ INIT_NS_CLASS_ENTRY (ce , "MongoDB\\Driver" , "CursorId " , php_phongo_cursorid_me );
135135 php_phongo_cursorid_ce = zend_register_internal_class (& ce TSRMLS_CC );
136136 php_phongo_cursorid_ce -> create_object = php_phongo_cursorid_create_object ;
137137 PHONGO_CE_FINAL (php_phongo_cursorid_ce );
0 commit comments