You are here

public function YamlFileLoaderTest::provideInvalidYamlFiles in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/validator/Tests/Mapping/Loader/YamlFileLoaderTest.php \Symfony\Component\Validator\Tests\Mapping\Loader\YamlFileLoaderTest::provideInvalidYamlFiles()

File

vendor/symfony/validator/Tests/Mapping/Loader/YamlFileLoaderTest.php, line 48

Class

YamlFileLoaderTest

Namespace

Symfony\Component\Validator\Tests\Mapping\Loader

Code

public function provideInvalidYamlFiles() {
  return array(
    array(
      'nonvalid-mapping.yml',
    ),
    array(
      'bad-format.yml',
    ),
  );
}