8000 feature #31732 [HttpKernel] Make DebugHandlersListener internal (chal… · symfony/symfony@1203290 · GitHub
[go: up one dir, main page]

Skip to content

Commit 1203290

Browse files
feature #31732 [HttpKernel] Make DebugHandlersListener internal (chalasr)
This PR was merged into the 4.4 branch. Discussion ---------- [HttpKernel] Make DebugHandlersListener internal | Q | A | ------------- | --- | Branch? | 4.4 | Bug fix? | no | New feature? | yes | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | n/a | License | MIT | Doc PR | n/a Required to remove the legacy `Event` argument type declaration from its `configure()` method in 5.0. Unlocks #31689 Commits ------- 1a8db29 [HttpKernel] Make DebugHandlersListener internal
2 parents 2ff0273 + 1a8db29 commit 1203290

File tree

4 files changed

+13
-0
lines changed

4 files changed

+13
-0
lines changed

UPGRADE-4.4.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
UPGRADE FROM 4.3 to 4.4
22
=======================
33

4+
HttpKernel
5+
----------
6+
7+
* The `DebugHandlersListener` class has been marked as `final`
8+
49
DependencyInjection
510
-------------------
611

UPGRADE-5.0.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -254,6 +254,7 @@ HttpKernel
254254
* Removed `GetResponseForExceptionEvent`, use `ExceptionEvent` instead
255255
* Removed `PostResponseEvent`, use `TerminateEvent` instead
256256
* Removed `TranslatorListener` in favor of `LocaleAwareListener`
257+
* The `DebugHandlersListener` class has been made `final`
257258

258259
Intl
259260
----

src/Symfony/Component/HttpKernel/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
CHANGELOG
22
=========
33

4+
4.4.0
5+
-----
6+
7+
* The `DebugHandlersListener` class has been marked as `final`
8+
49
4.3.0
510
-----
611

src/Symfony/Component/HttpKernel/EventListener/DebugHandlersListener.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@
2727
* Configures errors and exceptions handlers.
2828
*
2929
* @author Nicolas Grekas <p@tchwork.com>
30+
*
31+
* @final since Symfony 4.4
3032
*/
3133
class DebugHandlersListener implements EventSubscriberInterface
3234
{

0 commit comments

Comments
 (0)
0