public function CrossCheckTest::crossCheckLoadersDumpers in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/dependency-injection/Tests/CrossCheckTest.php \Symfony\Component\DependencyInjection\Tests\CrossCheckTest::crossCheckLoadersDumpers()
File
- vendor/
symfony/ dependency-injection/ Tests/ CrossCheckTest.php, line 74
Class
Namespace
Symfony\Component\DependencyInjection\TestsCode
public function crossCheckLoadersDumpers() {
$tests = array(
array(
'services1.xml',
'xml',
),
array(
'services2.xml',
'xml',
),
array(
'services6.xml',
'xml',
),
array(
'services8.xml',
'xml',
),
array(
'services9.xml',
'xml',
),
);
if (class_exists('Symfony\\Component\\Yaml\\Yaml')) {
$tests = array_merge($tests, array(
array(
'services1.yml',
'yaml',
),
array(
'services2.yml',
'yaml',
),
array(
'services6.yml',
'yaml',
),
array(
'services8.yml',
'yaml',
),
array(
'services9.yml',
'yaml',
),
));
}
return $tests;
}