We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ccd773 commit 082bf48Copy full SHA for 082bf48
Tests/CrossCheckTest.php
@@ -73,24 +73,17 @@ public function testCrossCheck($fixture, $type)
73
74
public function crossCheckLoadersDumpers()
75
{
76
- $tests = array(
+ return array(
77
array('services1.xml', 'xml'),
78
array('services2.xml', 'xml'),
79
array('services6.xml', 'xml'),
80
array('services8.xml', 'xml'),
81
array('services9.xml', 'xml'),
82
+ array('services1.yml', 'yaml'),
83
+ array('services2.yml', 'yaml'),
84
+ array('services6.yml', 'yaml'),
85
+ array('services8.yml', 'yaml'),
86
+ array('services9.yml', 'yaml'),
87
);
-
- if (class_exists('Symfony\Component\Yaml\Yaml')) {
- $tests = array_merge($tests, array(
- array('services1.yml', 'yaml'),
- array('services2.yml', 'yaml'),
88
- array('services6.yml', 'yaml'),
89
- array('services8.yml', 'yaml'),
90
- array('services9.yml', 'yaml'),
91
- ));
92
- }
93
94
- return $tests;
95
}
96
0 commit comments