public function YamlFileLoaderTest::getPathsToInvalidFiles

File

drupal/core/vendor/symfony/routing/Symfony/Component/Routing/Tests/Loader/YamlFileLoaderTest.php, line 61

Class

YamlFileLoaderTest

Namespace

Symfony\Component\Routing\Tests\Loader

Code

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',
    ),
  );
}