mirror of
https://github.com/php/php-src.git
synced 2024-11-29 04:46:07 +08:00
- Update to new API
This commit is contained in:
parent
861bad634a
commit
0e6d7d652e
@ -82,8 +82,8 @@ static int incomplete_class_has_property(zval *object, zval *member, int check_e
|
||||
return 0;
|
||||
}
|
||||
|
||||
static union _zend_function *incomplete_class_get_method(zval *object, char *method, int method_len TSRMLS_DC) {
|
||||
incomplete_class_message(object, E_ERROR TSRMLS_CC);
|
||||
static union _zend_function *incomplete_class_get_method(zval **object, char *method, int method_len TSRMLS_DC) {
|
||||
incomplete_class_message(*object, E_ERROR TSRMLS_CC);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user