@@ -248,24 +248,6 @@ PHP_METHOD(UTCDateTime, __toString)
248248}
249249/* }}} */
250250
251- /* {{{ proto void UTCDateTime::__wakeup()
252- */
253- PHP_METHOD (UTCDateTime , __wakeup )
254- {
255- php_phongo_utcdatetime_t * intern ;
256- HashTable * props ;
257-
258- if (zend_parse_parameters_none () == FAILURE ) {
259- return ;
260- }
261-
262- intern = Z_UTCDATETIME_OBJ_P (getThis ());
263- props = zend_std_get_properties (getThis () TSRMLS_CC );
264-
265- php_phongo_utcdatetime_init_from_hash (intern , props TSRMLS_CC );
266- }
267- /* }}} */
268-
269251/* {{{ proto DateTime UTCDateTime::toDateTime()
270252 Returns a DateTime object representing this UTCDateTime */
271253PHP_METHOD (UTCDateTime , toDateTime )
@@ -407,7 +389,6 @@ static zend_function_entry php_phongo_utcdatetime_me[] = {
407389 PHP_ME (UTCDateTime , __construct , ai_UTCDateTime___construct , ZEND_ACC_PUBLIC |ZEND_ACC_FINAL )
408390 PHP_ME (UTCDateTime , __set_state , ai_UTCDateTime___set_state , ZEND_ACC_PUBLIC |ZEND_ACC_STATIC )
409391 PHP_ME (UTCDateTime , __toString , ai_UTCDateTime_void , ZEND_ACC_PUBLIC |ZEND_ACC_FINAL )
410- PHP_ME (UTCDateTime , __wakeup , ai_UTCDateTime_void , ZEND_ACC_PUBLIC )
411392 PHP_ME (UTCDateTime , serialize , ai_UTCDateTime_void , ZEND_ACC_PUBLIC |ZEND_ACC_FINAL )
412393 PHP_ME (UTCDateTime , unserialize , ai_UTCDateTime_unserialize , ZEND_ACC_PUBLIC |ZEND_ACC_FINAL )
413394 PHP_ME (UTCDateTime , toDateTime , ai_UTCDateTime_void , ZEND_ACC_PUBLIC |ZEND_ACC_FINAL )
0 commit comments