-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: DI Extension deprecated since Symfony 7.1 (#8187)
- Loading branch information
Showing
3 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ | |
use Sonata\AdminBundle\FieldDescription\FieldDescriptionInterface; | ||
use Sonata\AdminBundle\Templating\TemplateRegistryInterface; | ||
use Symfony\Component\DependencyInjection\ContainerBuilder; | ||
use Symfony\Component\HttpKernel\DependencyInjection\Extension; | ||
use Symfony\Component\DependencyInjection\Extension\Extension; | ||
|
||
/** | ||
* @author Thomas Rabaix <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,6 +20,7 @@ | |
use Sonata\AdminBundle\Util\AdminAclUserManagerInterface; | ||
use Symfony\Component\Config\FileLocator; | ||
use Symfony\Component\DependencyInjection\ContainerBuilder; | ||
use Symfony\Component\DependencyInjection\Extension\Extension; | ||
use Symfony\Component\DependencyInjection\Loader\PhpFileLoader; | ||
use Symfony\Component\DependencyInjection\Reference; | ||
use Symfony\Component\Form\Extension\Core\Type\ChoiceType as SymfonyChoiceType; | ||
|
@@ -29,7 +30,6 @@ | |
use Symfony\Component\Form\Extension\Core\Type\IntegerType as SymfonyIntegerType; | ||
use Symfony\Component\Form\Extension\Core\Type\TextareaType as SymfonyTextareaType; | ||
use Symfony\Component\Form\Extension\Core\Type\TextType as SymfonyTextType; | ||
use Symfony\Component\HttpKernel\DependencyInjection\Extension; | ||
|
||
/** | ||
* @author Thomas Rabaix <[email protected]> | ||
|