Skip to content

Commit 57c8e61

Browse files
committed
Refactor XML loader instantiation for simplicity
1 parent b327848 commit 57c8e61

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/DependencyInjection/SetonoSyliusStaticContextsExtension.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ final class SetonoSyliusStaticContextsExtension extends Extension
1313
{
1414
public function load(array $configs, ContainerBuilder $container): void
1515
{
16-
$loader = new XmlFileLoader($container, new FileLocator(__DIR__ . '/../../config'));
17-
$loader->load('services.xml');
16+
(new XmlFileLoader($container, new FileLocator(__DIR__ . '/../../config')))->load('services.xml');
1817
}
1918
}

0 commit comments

Comments
 (0)