1
0
mirror of synced 2025-02-02 13:31: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 b11ae45a2f
commit ddf3125afe

View File

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