Skip to content

Commit

Permalink
Update Extension to meet Symfony 7.1 deprecation
Browse files Browse the repository at this point in the history
Symfony 7.1 deprecation:

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.
  • Loading branch information
jerowork committed Jul 1, 2024
1 parent dfc4bdc commit 170a316
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DependencyInjection/OverblogDataLoaderExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@

use Symfony\Component\Config\FileLocator;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\DependencyInjection\Extension\Extension;
use Symfony\Component\DependencyInjection\Loader\YamlFileLoader;
use Symfony\Component\DependencyInjection\Reference;
use Symfony\Component\HttpKernel\DependencyInjection\Extension;

final class OverblogDataLoaderExtension extends Extension
{
Expand Down

0 comments on commit 170a316

Please sign in to comment.