Skip to content

Commit c5ed2b9

Browse files
authored
Merge pull request #208 from janatjak/master
fix processConfiguration - symfony 3.3.8
2 parents 100a6c3 + d0de9ef commit c5ed2b9

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

DependencyInjection/JMSI18nRoutingExtension.php

+1-3
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818

1919
namespace JMS\I18nRoutingBundle\DependencyInjection;
2020

21-
use Symfony\Component\Config\Definition\Processor;
2221
use Symfony\Component\Config\FileLocator;
2322
use Symfony\Component\DependencyInjection\Loader\XmlFileLoader;
2423
use Symfony\Component\DependencyInjection\ContainerBuilder;
@@ -33,8 +32,7 @@ class JMSI18nRoutingExtension extends Extension
3332
{
3433
public function load(array $configs, ContainerBuilder $container)
3534
{
36-
$processor = new Processor();
37-
$config = $processor->processConfiguration(new Configuration, $configs);
35+
$config = $this->processConfiguration(new Configuration, $configs);
3836

3937
$loader = new XmlFileLoader($container, new FileLocator(array(__DIR__.'/../Resources/config')));
4038
$loader->load('services.xml');

0 commit comments

Comments
 (0)