We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 100a6c3 + d0de9ef commit c5ed2b9Copy full SHA for c5ed2b9
DependencyInjection/JMSI18nRoutingExtension.php
@@ -18,7 +18,6 @@
18
19
namespace JMS\I18nRoutingBundle\DependencyInjection;
20
21
-use Symfony\Component\Config\Definition\Processor;
22
use Symfony\Component\Config\FileLocator;
23
use Symfony\Component\DependencyInjection\Loader\XmlFileLoader;
24
use Symfony\Component\DependencyInjection\ContainerBuilder;
@@ -33,8 +32,7 @@ class JMSI18nRoutingExtension extends Extension
33
32
{
34
public function load(array $configs, ContainerBuilder $container)
35
36
- $processor = new Processor();
37
- $config = $processor->processConfiguration(new Configuration, $configs);
+ $config = $this->processConfiguration(new Configuration, $configs);
38
39
$loader = new XmlFileLoader($container, new FileLocator(array(__DIR__.'/../Resources/config')));
40
$loader->load('services.xml');
0 commit comments