Skip to content

Commit c1c96dd

Browse files
committed
bug #258 Fix Symfony 8.1 DependencyInjection deprecation warning (30Sana)
This PR was squashed before being merged into the 2.x branch. Discussion ---------- Fix Symfony 8.1 DependencyInjection deprecation warning | Q | A | | ------------- | --------- | | Bug fix? | no | | New feature? | no | | Deprecations? | no | | Issues | Fix #257 | | License | MIT | Fix Symfony 8.1 DependencyInjection deprecation warning Replaces the deprecated `Symfony\Component\HttpKernel\DependencyInjection\Extension` with `Symfony\Component\DependencyInjection\Extension\Extension` as required since Symfony 8.1. Commits ------- 2bee63b Fix Symfony 8.1 DependencyInjection deprecation warning
2 parents 5b932e0 + 2bee63b commit c1c96dd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/DependencyInjection/WebpackEncoreExtension.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
use Symfony\Component\DependencyInjection\Definition;
1919
use Symfony\Component\DependencyInjection\Loader\PhpFileLoader;
2020
use Symfony\Component\DependencyInjection\Reference;
21-
use Symfony\Component\HttpKernel\DependencyInjection\Extension;
21+
use Symfony\Component\DependencyInjection\Extension\Extension;
2222
use Symfony\Component\WebLink\EventListener\AddLinkHeaderListener;
2323
use Symfony\WebpackEncoreBundle\Asset\EntrypointLookup;
2424
use Symfony\WebpackEncoreBundle\Asset\EntrypointLookupInterface;

0 commit comments

Comments
 (0)