8000 Remove deprecation · symfony/symfony@a0e462f · GitHub
[go: up one dir, main page]

Skip to content

Commit a0e462f

Browse files
committed
Remove deprecation
1 parent cd98d85 commit a0e462f

File tree

4 files changed

+1
-7
lines changed

4 files changed

+1
-7
lines changed

UPGRADE-6.1.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ HttpKernel
1717
----------
1818

1919
* Deprecate StreamedResponseListener, it's not needed anymore
20-
* Deprecate `ConfigurableExtension` class, use `MicroExtension` instead
2120

2221
Serializer
2322
----------

src/Symfony/Component/DependencyInjection/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ CHANGELOG
77
* Add `$exclude` to `TaggedIterator` and `TaggedLocator` attributes
88
* Add `$exclude` to `tagged_iterator` and `tagged_locator` configurator
99
* Add an `env` function to the expression language provider
10-
* Add `MicroExtension` class for DI configuration/definition on a single file
10+
* Add abstract `MicroExtension` class for DI configuration/definition on a single file
1111

1212
6.0
1313
---

src/Symfony/Component/HttpKernel/CHANGELOG.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ CHANGELOG
99
* Add `Profiler::isEnabled()` so collaborating collector services may elect to omit themselves.
1010
* Add the `UidValueResolver` argument value resolver
1111
* Add abstract `MicroBundle` class for DI configuration/definition on a single file
12-
* Deprecate `ConfigurableExtension` class, use `MicroExtension` instead
1312

1413
6.0
1514
---

src/Symfony/Component/HttpKernel/DependencyInjection/ConfigurableExtension.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@
1313

1414
use Symfony\Component\DependencyInjection\ContainerBuilder;
1515

16-
trigger_deprecation('symfony/http-kernel', '6.1', 'The "%s" class is deprecated. Use MicroExtension class instead.', ConfigurableExtension::class);
17-
1816
/**
1917
* This extension sub-class provides first-class integration with the
2018
* Config/Definition Component.
@@ -26,8 +24,6 @@
2624
* c) the configuration class resides in the DependencyInjection sub-folder.
2725
*
2826
* @author Johannes M. Schmitt <schmittjoh@gmail.com>
29-
*
30-
* @deprecated since Symfony 6.1, use MicroExtension class instead
3127
*/
3228
abstract class ConfigurableExtension extends Extension
3329
{

0 commit comments

Comments
 (0)
0