[HttpKernel] Make DebugHandlersListener internal

This commit is contained in:
Robin Chalas 2019-05-30 13:47:57 +02:00
parent 299b6264cb
commit 1a8db293c6
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
{