mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
Use zend_class_entry/zend_function type names instead of _zend_class_entry/_zend_function tags.
This commit is contained in:
parent
6c4528e444
commit
93f9ee7217
12 changed files with 40 additions and 40 deletions
|
@ -314,7 +314,7 @@ static HashTable *saproxy_properties_get(zval *object)
|
|||
return NULL;
|
||||
}
|
||||
|
||||
static union _zend_function *saproxy_method_get(zend_object **object, zend_string *name, const zval *key)
|
||||
static zend_function *saproxy_method_get(zend_object **object, zend_string *name, const zval *key)
|
||||
{
|
||||
/* no methods */
|
||||
return NULL;
|
||||
|
@ -325,7 +325,7 @@ static int saproxy_call_method(zend_string *method, zend_object *object, INTERNA
|
|||
return FAILURE;
|
||||
}
|
||||
|
||||
static union _zend_function *saproxy_constructor_get(zend_object *object)
|
||||
static zend_function *saproxy_constructor_get(zend_object *object)
|
||||
{
|
||||
/* user cannot instantiate */
|
||||
return NULL;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue