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 d4f240d commit d7cac3fCopy full SHA for d7cac3f
tests/DependencyInjection/XmlMonologExtensionTest.php
@@ -24,6 +24,10 @@ class XmlMonologExtensionTest extends FixtureMonologExtensionTestCase
24
{
25
protected function loadFixture(ContainerBuilder $container, string $fixture)
26
27
+ if (!class_exists(XmlFileLoader::class)) {
28
+ $this->markTestSkipped('The XML configuration has been removed in Symfony 8.0.');
29
+ }
30
+
31
$loader = new XmlFileLoader($container, new FileLocator(__DIR__.'/Fixtures/xml'));
32
$loader->load($fixture.'.xml');
33
}
0 commit comments