diff options
Diffstat (limited to 'Zend/tests/bug55156.phpt')
-rw-r--r-- | Zend/tests/bug55156.phpt | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/Zend/tests/bug55156.phpt b/Zend/tests/bug55156.phpt index 53cdf1337a..2dc47a1134 100644 --- a/Zend/tests/bug55156.phpt +++ b/Zend/tests/bug55156.phpt @@ -7,22 +7,22 @@ opcache.save_comments=1 /** test */ namespace foo { - function test() { } + function test() { } - $x = new \ReflectionFunction('foo\test'); - var_dump($x->getDocComment()); + $x = new \ReflectionFunction('foo\test'); + var_dump($x->getDocComment()); - /** test1 */ - class bar { } + /** test1 */ + class bar { } - /** test2 */ - class foo extends namespace\bar { } + /** test2 */ + class foo extends namespace\bar { } - $x = new \ReflectionClass('foo\bar'); - var_dump($x->getDocComment()); + $x = new \ReflectionClass('foo\bar'); + var_dump($x->getDocComment()); - $x = new \ReflectionClass('foo\foo'); - var_dump($x->getDocComment()); + $x = new \ReflectionClass('foo\foo'); + var_dump($x->getDocComment()); } ?> |