Skip to content

Commit dd153d8

Browse files
bug #33282 [HttpKernel] Do not extend the new SF 4.3 ControllerEvent so we can make it final (Tobion)
This PR was merged into the 4.3 branch. Discussion ---------- [HttpKernel] Do not extend the new SF 4.3 ControllerEvent so we can make it final | Q | A | ------------- | --- | Branch? | 4.3 | Bug fix? | no | New feature? | no <!-- please update src/**/CHANGELOG.md files --> | BC breaks? | unlikely | Deprecations? | no <!-- please update UPGRADE-*.md and src/**/CHANGELOG.md files --> | Tests pass? | yes <!-- please add some, will be required by reviewers --> | Fixed tickets | | License | MIT | Doc PR | See #33152 (comment) Remember the ControllerEvent is new in SF 4.3 so we just go back to what it was before 4.3 Commits ------- 00140b6 Do not extend the new SF 4.3 ControllerEvent so we can make it final
2 parents 72eaff8 + 00140b6 commit dd153d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/HttpKernel/Event/FilterControllerArgumentsEvent.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
/**
1818
* @deprecated since Symfony 4.3, use ControllerArgumentsEvent instead
1919
*/
20-
class FilterControllerArgumentsEvent extends ControllerEvent
20+
class FilterControllerArgumentsEvent extends FilterControllerEvent
2121
{
2222
private $arguments;
2323

0 commit comments

Comments
 (0)