You are here

public function YamlFileLoaderTest::provideInvalidFiles in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/dependency-injection/Tests/Loader/YamlFileLoaderTest.php \Symfony\Component\DependencyInjection\Tests\Loader\YamlFileLoaderTest::provideInvalidFiles()

File

vendor/symfony/dependency-injection/Tests/Loader/YamlFileLoaderTest.php, line 82

Class

YamlFileLoaderTest

Namespace

Symfony\Component\DependencyInjection\Tests\Loader

Code

public function provideInvalidFiles() {
  return array(
    array(
      'bad_parameters',
    ),
    array(
      'bad_imports',
    ),
    array(
      'bad_import',
    ),
    array(
      'bad_services',
    ),
    array(
      'bad_service',
    ),
    array(
      'bad_calls',
    ),
    array(
      'bad_format',
    ),
  );
}