Skip to content

Commit 10875c9

Browse files
[Symfony Bundle] Fix the usage of a deprecated class (#1717)
* Fix the usage of a deprecated class * Add an entry to the CHANGELOG.md * Update src/Integration/Symfony/Bundle/CHANGELOG.md --------- Co-authored-by: Jérémy Derussé <[email protected]>
1 parent c76bc39 commit 10875c9

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
## NOT RELEASED
44

5+
### Changed
6+
7+
- Replace deprecated Extension by Symfony\Component\DependencyInjection\Extension\Extension
8+
instead of the deprecated Symfony\Component\HttpKernel\DependencyInjection\Extension class
9+
510
## 1.12.1
611

712
### Changed

src/DependencyInjection/AsyncAwsExtension.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
use Symfony\Component\DependencyInjection\ContainerBuilder;
1616
use Symfony\Component\DependencyInjection\ContainerInterface;
1717
use Symfony\Component\DependencyInjection\Definition;
18+
use Symfony\Component\DependencyInjection\Extension\Extension;
1819
use Symfony\Component\DependencyInjection\Reference;
19-
use Symfony\Component\HttpKernel\DependencyInjection\Extension;
2020
use Symfony\Contracts\Cache\CacheInterface;
2121
use Symfony\Contracts\HttpClient\HttpClientInterface;
2222

0 commit comments

Comments
 (0)