summaryrefslogtreecommitdiff
path: root/ext/com_dotnet/com_saproxy.c
diff options
context:
space:
mode:
authorNikita Popov <nikic@php.net>2014-10-09 14:42:56 +0200
committerNikita Popov <nikic@php.net>2014-10-09 14:42:56 +0200
commit9903f16e5c3c3a29c4a0ec17a8b86940887f4665 (patch)
treeb479c361ff5ac47f5529fbf957e4afdf2c239769 /ext/com_dotnet/com_saproxy.c
parente5e9d8346f50d406f4e8ed8431b7c917663a32c3 (diff)
downloadphp-git-9903f16e5c3c3a29c4a0ec17a8b86940887f4665.tar.gz
Remove get_class_entry handlers in COM
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 881ebfbaea..e4d3ebb7df 100644
--- a/ext/com_dotnet/com_saproxy.c
+++ b/ext/com_dotnet/com_saproxy.c
@@ -333,11 +333,6 @@ static union _zend_function *saproxy_constructor_get(zend_object *object TSRMLS_
return NULL;
}
-static zend_class_entry *saproxy_class_entry_get(const zend_object *object TSRMLS_DC)
-{
- return php_com_saproxy_class_entry;
-}
-
static zend_string* saproxy_class_name_get(const zend_object *object, int parent TSRMLS_DC)
{
return zend_string_copy(php_com_saproxy_class_entry->name);
@@ -420,7 +415,6 @@ zend_object_handlers php_com_saproxy_handlers = {
saproxy_method_get,
saproxy_call_method,
saproxy_constructor_get,
- saproxy_class_entry_get,
saproxy_class_name_get,
saproxy_objects_compare,
saproxy_object_cast,