Skip to content

Commit

Permalink
bug #1226 feature: fix deprecation of Extension (Chris8934)
Browse files Browse the repository at this point in the history
This PR was merged into the 3.x branch.

Discussion
----------

feature: fix deprecation of Extension

`The "Symfony\Component\HttpKernel\DependencyInjection\Extension" class is considered internal since Symfony 7.1, to be deprecated in 8.1; use Symfony\Component\DependencyInjection\Extension\Extension instead. It may change without further notice. You should not use it from "Lexik\Bundle\JWTAuthenticationBundle\DependencyInjection\LexikJWTAuthenticationExtension".`

Commits
-------

10bdf1e feature: fix deprecation of Extension
  • Loading branch information
chalasr committed Jul 3, 2024
2 parents b20c4ae + 10bdf1e commit 0c62037
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DependencyInjection/LexikJWTAuthenticationExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
use Symfony\Component\DependencyInjection\ChildDefinition;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\DependencyInjection\Exception\LogicException;
use Symfony\Component\DependencyInjection\Extension\Extension;
use Symfony\Component\DependencyInjection\Loader\XmlFileLoader;
use Symfony\Component\DependencyInjection\Reference;
use Symfony\Component\HttpKernel\DependencyInjection\Extension;
use Symfony\Component\HttpKernel\Kernel;

/**
Expand Down

0 comments on commit 0c62037

Please sign in to comment.