public function YamlFileLoaderTest::getPathsToInvalidFiles in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/routing/Tests/Loader/YamlFileLoaderTest.php \Symfony\Component\Routing\Tests\Loader\YamlFileLoaderTest::getPathsToInvalidFiles()
File
- vendor/
symfony/ routing/ Tests/ Loader/ YamlFileLoaderTest.php, line 52
Class
Namespace
Symfony\Component\Routing\Tests\LoaderCode
public function getPathsToInvalidFiles() {
return array(
array(
'nonvalid.yml',
),
array(
'nonvalid2.yml',
),
array(
'incomplete.yml',
),
array(
'nonvalidkeys.yml',
),
array(
'nonesense_resource_plus_path.yml',
),
array(
'nonesense_type_without_resource.yml',
),
array(
'bad_format.yml',
),
);
}