diff options
author | Dmitry Stogov <dmitry@php.net> | 2007-09-29 08:52:40 +0000 |
---|---|---|
committer | Dmitry Stogov <dmitry@php.net> | 2007-09-29 08:52:40 +0000 |
commit | b20ed0d2e01861d5691395062e2167c5e9e9e1c9 (patch) | |
tree | d4b26d975d308eda244ae531a6df8ee15309d926 /Zend/zend.h | |
parent | c560a968482060382176bb299ef886c45dd66464 (diff) | |
download | php-git-b20ed0d2e01861d5691395062e2167c5e9e9e1c9.tar.gz |
Added support for __callstatic() magic method. (Sara)
Diffstat (limited to 'Zend/zend.h')
-rw-r--r-- | Zend/zend.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Zend/zend.h b/Zend/zend.h index 29f3aea103..63b2e51889 100644 --- a/Zend/zend.h +++ b/Zend/zend.h @@ -340,6 +340,7 @@ struct _zend_class_entry { union _zend_function *__unset; union _zend_function *__isset; union _zend_function *__call; + union _zend_function *__callstatic; union _zend_function *__tostring; union _zend_function *serialize_func; union _zend_function *unserialize_func; |