Skip to content

Commit

Permalink
Remove usage of the deprecated base extension from HttpKernel
Browse files Browse the repository at this point in the history
The base extension available in HttpKernel only adds support for registering
some classes to be added in the cache warmer of the doctrine/annotations
parser, compared to the base class of the DI component.
As annotations are not supported anymore in Symfony 7, this base class has been
deprecated in Symfony 7.1.
As this bundle does not rely on the extra feature, it can use the base class
from DI directly.
  • Loading branch information
stof authored Jul 3, 2024
1 parent c2fb20c commit 4737072
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
use InvalidArgumentException;
use Symfony\Component\Config\FileLocator;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\DependencyInjection\Extension\Extension;
use Symfony\Component\DependencyInjection\Loader\XmlFileLoader;
use Symfony\Component\Finder\Finder;
use Symfony\Component\HttpKernel\DependencyInjection\Extension;

/**
* @private
Expand Down

0 comments on commit 4737072

Please sign in to comment.