Skip to content

Commit

Permalink
Use 'Extension' under 'DependencyInjection' component
Browse files Browse the repository at this point in the history
The old "Symfony\Component\HttpKernel\DependencyInjection\Extension" class is
considered internal since Symfony 7.1, to be deprecated in 8.1. According to
the official deprecation message, we should use
Symfony\Component\DependencyInjection\Extension\Extension instead.

Fixed #98
  • Loading branch information
pan93412 committed Dec 11, 2024
1 parent 651865d commit 6b99108
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DependencyInjection/MjmlExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
use Symfony\Component\Config\FileLocator;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\DependencyInjection\Definition;
use Symfony\Component\DependencyInjection\Extension\Extension;
use Symfony\Component\DependencyInjection\Loader\YamlFileLoader;
use Symfony\Component\HttpKernel\DependencyInjection\Extension;

class MjmlExtension extends Extension
{
Expand Down

0 comments on commit 6b99108

Please sign in to comment.