public function AnnotationClassLoaderTest::provideTestSupportsChecksResource in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/routing/Tests/Loader/AnnotationClassLoaderTest.php \Symfony\Component\Routing\Tests\Loader\AnnotationClassLoaderTest::provideTestSupportsChecksResource()
File
- vendor/
symfony/ routing/ Tests/ Loader/ AnnotationClassLoaderTest.php, line 53
Class
Namespace
Symfony\Component\Routing\Tests\LoaderCode
public function provideTestSupportsChecksResource() {
return array(
array(
'class',
true,
),
array(
'\\fully\\qualified\\class\\name',
true,
),
array(
'namespaced\\class\\without\\leading\\slash',
true,
),
array(
'ÿClassWithLegalSpecialCharacters',
true,
),
array(
'5',
false,
),
array(
'foo.foo',
false,
),
array(
null,
false,
),
);
}