summaryrefslogtreecommitdiff
path: root/Zend/zend_API.h
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@php.net>2007-09-29 08:52:40 +0000
committerDmitry Stogov <dmitry@php.net>2007-09-29 08:52:40 +0000
commitb20ed0d2e01861d5691395062e2167c5e9e9e1c9 (patch)
treed4b26d975d308eda244ae531a6df8ee15309d926 /Zend/zend_API.h
parentc560a968482060382176bb299ef886c45dd66464 (diff)
downloadphp-git-b20ed0d2e01861d5691395062e2167c5e9e9e1c9.tar.gz
Added support for __callstatic() magic method. (Sara)
Diffstat (limited to 'Zend/zend_API.h')
-rw-r--r--Zend/zend_API.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Zend/zend_API.h b/Zend/zend_API.h
index b4b27c41b4..84d7949aed 100644
--- a/Zend/zend_API.h
+++ b/Zend/zend_API.h
@@ -139,6 +139,7 @@ typedef struct _zend_function_entry {
class_container.create_object = NULL; \
class_container.interface_gets_implemented = NULL; \
class_container.__call = handle_fcall; \
+ class_container.__callstatic = handle_fcall; \
class_container.__tostring = NULL; \
class_container.__get = handle_propget; \
class_container.__set = handle_propset; \