12345678910111213141516171819202122 |
- --TEST--
- Testing declaration of alias to 'static'
- --FILE--
- <?php
- class bar {
- }
- class foo {
- public function test() {
- class_alias('bar', 'static');
- return new static;
- }
- }
- $a = new foo;
- var_dump($a->test());
- ?>
- --EXPECTF--
- object(foo)#%d (0) {
- }
|