Skip to content

Commit 77f4b23

Browse files
committed
minor symfony#17146 Do not use HttpKernel Extension when not needed for 2.7 (Tobion)
This PR was merged into the 2.7 branch. Discussion ---------- Do not use HttpKernel Extension when not needed for 2.7 | Q | A | ------------- | --- | Bug fix? | no | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | - | License | MIT | Doc PR | - symfony#17145 for new stuff in 2.7 Commits ------- cc64c54 Do not use HttpKernel Extension when not needed for 2.7
2 parents d222bd3 + cc64c54 commit 77f4b23

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Symfony/Bundle/DebugBundle/DependencyInjection/DebugExtension.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313

1414
use Symfony\Component\Config\FileLocator;
1515
use Symfony\Component\DependencyInjection\ContainerBuilder;
16+
use Symfony\Component\DependencyInjection\Extension\Extension;
1617
use Symfony\Component\DependencyInjection\Loader\XmlFileLoader;
1718
use Symfony\Component\DependencyInjection\Reference;
18-
use Symfony\Component\HttpKernel\DependencyInjection\Extension;
1919

2020
/**
2121
* DebugExtension.

src/Symfony/Bundle/FrameworkBundle/Tests/Functional/Bundle/TestBundle/DependencyInjection/TestExtension.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
namespace Symfony\Bundle\FrameworkBundle\Tests\Functional\Bundle\TestBundle\DependencyInjection;
1313

1414
use Symfony\Component\DependencyInjection\ContainerBuilder;
15-
use Symfony\Component\HttpKernel\DependencyInjection\Extension;
15+
use Symfony\Component\DependencyInjection\Extension\Extension;
1616
use Symfony\Component\DependencyInjection\Extension\PrependExtensionInterface;
1717

1818
class TestExtension extends Extension implements PrependExtensionInterface

0 commit comments

Comments
 (0)