Skip to content

Commit

Permalink
Fix a deprecation
Browse files Browse the repository at this point in the history
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 "GpsLab\Bundle\GeoIP2Bundle\DependencyInjection\GpsLabGeoIP2Extension".
  • Loading branch information
Huluti authored Dec 2, 2024
1 parent a710fc3 commit ec098a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DependencyInjection/GpsLabGeoIP2Extension.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\DependencyInjection\Definition;
use Symfony\Component\DependencyInjection\Reference;
use Symfony\Component\HttpKernel\DependencyInjection\Extension;
use Symfony\Component\DependencyInjection\Extension\Extension;

class GpsLabGeoIP2Extension extends Extension
{
Expand Down

0 comments on commit ec098a4

Please sign in to comment.