Skip to content

Commit

Permalink
Merge pull request #485 from stof/fix_deprecation
Browse files Browse the repository at this point in the history
Remove usage of the deprecation HttpKernel base extension class
  • Loading branch information
stof authored Jun 10, 2024
2 parents 9f7023e + a80a2a9 commit a3ceb54
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
3 changes: 3 additions & 0 deletions src/DependencyInjection/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@
use Symfony\Component\Config\Definition\Builder\TreeBuilder;
use Symfony\Component\Config\Definition\ConfigurationInterface;

/**
* @internal
*/
class Configuration implements ConfigurationInterface
{
public function getConfigTreeBuilder(): TreeBuilder
Expand Down
5 changes: 4 additions & 1 deletion src/DependencyInjection/StofDoctrineExtensionsExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,15 @@
use Symfony\Component\Cache\Adapter\ArrayAdapter;
use Symfony\Component\Config\Loader\LoaderInterface;
use Symfony\Component\DependencyInjection\Alias;
use Symfony\Component\HttpKernel\DependencyInjection\Extension;
use Symfony\Component\Config\Definition\Processor;
use Symfony\Component\DependencyInjection\Extension\Extension;
use Symfony\Component\DependencyInjection\Loader\XmlFileLoader;
use Symfony\Component\Config\FileLocator;
use Symfony\Component\DependencyInjection\ContainerBuilder;

/**
* @internal
*/
class StofDoctrineExtensionsExtension extends Extension
{
private const LISTENER_EVENTS = array(
Expand Down

0 comments on commit a3ceb54

Please sign in to comment.