8000 [HttpKernel] Marked the class DebugHandlersListener as internal by lyrixx · Pull Request #39016 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[HttpKernel] Marked the class DebugHandlersListener as internal #39016

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 8, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions UPGRADE-5.3.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@ Form
* Deprecated passing an array as the second argument of the `RadioListMapper::mapDataToForms()` method, pass `\Traversable` instead.
* Deprecated passing an array as the first argument of the `RadioListMapper::mapFormsToData()` method, pass `\Traversable` instead.

HttpKernel
----------

* Marked the class `Symfony\Component\HttpKernel\EventListener\DebugHandlersListener` as internal

Security
--------

Expand Down
5 changes: 5 additions & 0 deletions src/Symfony/Component/HttpKernel/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
CHANGELOG
=========

5.3.0
-----

* marked the class `Symfony\Component\HttpKernel\EventListener\DebugHandlersListener` as internal

5.2.0
-----

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@
* @author Nicolas Grekas <p@tchwork.com>
*
* @final
*
* @internal since Symfony 5.3
*/
class DebugHandlersListener implements EventSubscriberInterface
{
Expand Down
0