diff options
author | Stanislav Malyshev <stas@php.net> | 2003-01-12 17:22:35 +0000 |
---|---|---|
committer | Stanislav Malyshev <stas@php.net> | 2003-01-12 17:22:35 +0000 |
commit | 2ae8d124cef19cd0850759c9bc467c0888d931c3 (patch) | |
tree | dc6452abb53e582cc61336e56d8a7f02084baaf5 /Zend | |
parent | d48ffd97d655d979b3f6ef70c9a7a75d44dc2ed9 (diff) | |
download | php-git-2ae8d124cef19cd0850759c9bc467c0888d931c3.tar.gz |
Remove handle_property from here too
Diffstat (limited to 'Zend')
-rw-r--r-- | Zend/zend_API.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Zend/zend_API.h b/Zend/zend_API.h index 5b30436388..5695cc9b8e 100644 --- a/Zend/zend_API.h +++ b/Zend/zend_API.h @@ -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; \ } |