]> granicus.if.org Git - php/commitdiff
Remove handle_property from here too
authorStanislav Malyshev <stas@php.net>
Sun, 12 Jan 2003 17:22:35 +0000 (17:22 +0000)
committerStanislav Malyshev <stas@php.net>
Sun, 12 Jan 2003 17:22:35 +0000 (17:22 +0000)
Zend/zend_API.h

index 5b304363881fc82bdede1d089bd06f511186b9ff..5695cc9b8ee697ef4bb00c8b23dd52da056516b6 100644 (file)
@@ -95,9 +95,9 @@ BEGIN_EXTERN_C()
                class_container.destructor = NULL;                                              \
                class_container.clone = NULL;                                                   \
                class_container.create_object = NULL;                                   \
-               class_container.handle_function_call = handle_fcall;    \
-               class_container.handle_property_get = handle_propget;   \
-               class_container.handle_property_set = handle_propset;   \
+               class_container.__call = handle_fcall;  \
+               class_container.__get = handle_propget; \
+               class_container.__set = handle_propset; \
        }