1
0
mirror of synced 2025-02-01 04:51:45 +03:00

Test case for "class" keyword

Test case for http://www.doctrine-project.org/jira/browse/DDC-3493
This commit is contained in:
lukasmaz 2015-01-14 11:56:54 +01:00 committed by Marco Pivetta
parent 55a75bfb1b
commit 41dd584f62

View File

@ -1035,6 +1035,16 @@ class
', ',
array('Foo\Bar\Baz'), array('Foo\Bar\Baz'),
), ),
array(
'
<?php namespace Foo\Bar; class Baz {
public static function someMethod(){
return self::class;
}
}
',
array('Foo\Bar\Baz'),
),
); );
} }