Skip to content

Commit

Permalink
fix(deps): Remove usage of the deprecated base extension from HttpKer…
Browse files Browse the repository at this point in the history
…nel (#38)

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
SebLevDev authored Nov 22, 2024
1 parent 598a26d commit 34d2a67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DependencyInjection/SpiriitFormFilterExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
use Spiriit\Bundle\FormFilterBundle\Filter\FilterOperands;
use Symfony\Component\Config\FileLocator;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\DependencyInjection\Extension\Extension;
use Symfony\Component\DependencyInjection\Loader;
use Symfony\Component\DependencyInjection\Loader\XmlFileLoader;
use Symfony\Component\HttpKernel\DependencyInjection\Extension;

/**
* This is the class that loads and manages your bundle configuration
Expand Down

0 comments on commit 34d2a67

Please sign in to comment.