diff options
author | Felipe Pena <felipe@php.net> | 2010-03-02 00:16:40 +0000 |
---|---|---|
committer | Felipe Pena <felipe@php.net> | 2010-03-02 00:16:40 +0000 |
commit | 79f618833f3576a54565273d76027b3c0bb1db89 (patch) | |
tree | 3a84f10b01ea3e326ca319f1e177027ecc3532dc /Zend/tests/bug45186.phpt | |
parent | fcf1058d6bab4e80466f910ed42ab65ddaa93e2b (diff) | |
download | php-git-79f618833f3576a54565273d76027b3c0bb1db89.tar.gz |
- Fixed bug #51176 (Static calling in non-static method behaves like $this->)
Diffstat (limited to 'Zend/tests/bug45186.phpt')
-rw-r--r-- | Zend/tests/bug45186.phpt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Zend/tests/bug45186.phpt b/Zend/tests/bug45186.phpt index bcf88a1897..da7ac73f5c 100644 --- a/Zend/tests/bug45186.phpt +++ b/Zend/tests/bug45186.phpt @@ -35,17 +35,17 @@ call_user_func('self::y'); ?> --EXPECTF-- -__call: +__callstatic: string(3) "ABC" -__call: +__callstatic: string(3) "ABC" __call: string(3) "xyz" -__call: +__callstatic: string(3) "www" __call: string(1) "y" -__call: +__callstatic: string(1) "y" ok __callstatic: |