File tree 2 files changed +13
-3
lines changed
src/Symfony/Component/Security/Http
2 files changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -11876,7 +11876,7 @@ index 513b6494e5..c0211b6e39 100644
11876
11876
{
11877
11877
/** @var IsGranted[] $attributes */
11878
11878
diff --git a/src/Symfony/Component/Security/Http/Firewall.php b/src/Symfony/Component/Security/Http/Firewall.php
11879
- index f22988da13..8538f5f821 100644
11879
+ index f2f86a5dfa..bd47629587 100644
11880
11880
--- a/src/Symfony/Component/Security/Http/Firewall.php
11881
11881
+++ b/src/Symfony/Component/Security/Http/Firewall.php
11882
11882
@@ -51,5 +51,5 @@ class Firewall implements EventSubscriberInterface
@@ -11893,7 +11893,14 @@ index f22988da13..8538f5f821 100644
11893
11893
+ public function onKernelFinishRequest(FinishRequestEvent $event): void
11894
11894
{
11895
11895
$request = $event->getRequest();
11896
- @@ -120,5 +120,5 @@ class Firewall implements EventSubscriberInterface
11896
+ @@ -112,5 +112,5 @@ class Firewall implements EventSubscriberInterface
11897
+ * @return array
11898
+ */
11899
+ - public static function getSubscribedEvents()
11900
+ + public static function getSubscribedEvents(): array
11901
+ {
11902
+ return [
11903
+ @@ -123,5 +123,5 @@ class Firewall implements EventSubscriberInterface
11897
11904
* @return void
11898
11905
*/
11899
11906
- protected function callListeners(RequestEvent $event, iterable $listeners)
Original file line number Diff line number Diff line change @@ -108,7 +108,10 @@ public function onKernelFinishRequest(FinishRequestEvent $event)
108
108
}
109
109
}
110
110
111
- public static function getSubscribedEvents (): array
111
+ /**
112
+ * @return array
113
+ */
114
+ public static function getSubscribedEvents ()
112
115
{
113
116
return [
114
117
KernelEvents::REQUEST => ['onKernelRequest ' , 8 ],
You can’t perform that action at this time.
0 commit comments