summaryrefslogtreecommitdiff
path: root/ext/com_dotnet/com_saproxy.c
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@zend.com>2019-02-07 21:05:46 +0300
committerDmitry Stogov <dmitry@zend.com>2019-02-07 21:05:46 +0300
commitf45e0ce928e1d02e872d8805f4476a1ba072e8d1 (patch)
tree1d809b6432a5fc653ecd4b5cb3f53faf5e04daff /ext/com_dotnet/com_saproxy.c
parent2306c855abf504579aa2d2ca732dbb8c44d17f29 (diff)
downloadphp-git-f45e0ce928e1d02e872d8805f4476a1ba072e8d1.tar.gz
Remove ZEND_OVERLOADED_FUNCTION and corresponding call_method object handler
Diffstat (limited to 'ext/com_dotnet/com_saproxy.c')
-rw-r--r--ext/com_dotnet/com_saproxy.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/ext/com_dotnet/com_saproxy.c b/ext/com_dotnet/com_saproxy.c
index 7ce57ce915..225786bde8 100644
--- a/ext/com_dotnet/com_saproxy.c
+++ b/ext/com_dotnet/com_saproxy.c
@@ -319,11 +319,6 @@ static zend_function *saproxy_method_get(zend_object **object, zend_string *name
return NULL;
}
-static int saproxy_call_method(zend_string *method, zend_object *object, INTERNAL_FUNCTION_PARAMETERS)
-{
- return FAILURE;
-}
-
static zend_function *saproxy_constructor_get(zend_object *object)
{
/* user cannot instantiate */
@@ -410,7 +405,6 @@ zend_object_handlers php_com_saproxy_handlers = {
saproxy_dimension_delete,
saproxy_properties_get,
saproxy_method_get,
- saproxy_call_method,
saproxy_constructor_get,
saproxy_class_name_get,
saproxy_objects_compare,