From 39697f755d343d6f3478bf370811aaccc5662835 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antonio=20J=2E=20Garc=C3=ADa=20Lagar?= Date: Fri, 27 Sep 2024 12:40:46 +0200 Subject: [PATCH] Avoid extending a deprecated class --- CHANGELOG.md | 3 +++ .../AjglBreakpointTwigExtensionExtension.php | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b4267bd..5ccc260 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,9 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased][unreleased] +### Fixed +- Avoid extending a deprecated class + ## [0.4.2] - 2024-01-22 ### Added diff --git a/src/SymfonyBundle/DependencyInjection/AjglBreakpointTwigExtensionExtension.php b/src/SymfonyBundle/DependencyInjection/AjglBreakpointTwigExtensionExtension.php index 649b63b..c584dd5 100644 --- a/src/SymfonyBundle/DependencyInjection/AjglBreakpointTwigExtensionExtension.php +++ b/src/SymfonyBundle/DependencyInjection/AjglBreakpointTwigExtensionExtension.php @@ -13,8 +13,8 @@ use Symfony\Component\Config\FileLocator; use Symfony\Component\DependencyInjection\ContainerBuilder; +use Symfony\Component\DependencyInjection\Extension\Extension; use Symfony\Component\DependencyInjection\Loader; -use Symfony\Component\HttpKernel\DependencyInjection\Extension; /** * @author Antonio J. GarcĂ­a Lagar