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
-------

1a8db293c6 [HttpKernel] Make DebugHandlersListener internal
This commit is contained in:
Nicolas Grekas 2019-05-30 15:26:48 +02:00
commit 1203290688
4 changed files with 13 additions and 0 deletions

View File

@ -1,6 +1,11 @@
UPGRADE FROM 4.3 to 4.4
=======================
HttpKernel
----------
* The `DebugHandlersListener` class has been marked as `final`
DependencyInjection
-------------------

View File

@ -254,6 +254,7 @@ HttpKernel
* Removed `GetResponseForExceptionEvent`, use `ExceptionEvent` instead
* Removed `PostResponseEvent`, use `TerminateEvent` instead
* Removed `TranslatorListener` in favor of `LocaleAwareListener`
* The `DebugHandlersListener` class has been made `final`
Intl
----

View File

@ -1,6 +1,11 @@
CHANGELOG
=========
4.4.0
-----
* The `DebugHandlersListener` class has been marked as `final`
4.3.0
-----

View File

@ -27,6 +27,8 @@ use Symfony\Component\HttpKernel\KernelEvents;
* Configures errors and exceptions handlers.
*
* @author Nicolas Grekas <p@tchwork.com>
*
* @final since Symfony 4.4
*/
class DebugHandlersListener implements EventSubscriberInterface
{