Skip to content

Commit 8235986

Browse files
fix: removes possibly BC
1 parent 21b75ea commit 8235986

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

src/EventListener/BlameListener.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44

55
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
66
use Symfony\Component\HttpKernel\Event\RequestEvent;
7-
use Symfony\Component\HttpKernel\HttpKernelInterface;
87
use Symfony\Component\HttpKernel\KernelEvents;
98
use Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorageInterface;
109
use Symfony\Component\Security\Core\Authorization\AuthorizationCheckerInterface;
@@ -51,7 +50,7 @@ public function onKernelRequest(RequestEvent $event): void
5150
/**
5251
* @return array<string, string>
5352
*/
54-
public static function getSubscribedEvents(): array
53+
public static function getSubscribedEvents()
5554
{
5655
return array(
5756
KernelEvents::REQUEST => 'onKernelRequest',

src/EventListener/IpTraceListener.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public function onKernelRequest(RequestEvent $event): void
3636
/**
3737
* @return array<string, array<int, int|string>>
3838
*/
39-
public static function getSubscribedEvents(): array
39+
public static function getSubscribedEvents()
4040
{
4141
return array(
4242
KernelEvents::REQUEST => ['onKernelRequest', 500],

src/EventListener/LocaleListener.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public function onKernelRequest(RequestEvent $event): void
3232
/**
3333
* @return array<string, string>
3434
*/
35-
public static function getSubscribedEvents(): array
35+
public static function getSubscribedEvents()
3636
{
3737
return array(
3838
KernelEvents::REQUEST => 'onKernelRequest',

src/EventListener/LoggerListener.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public function onKernelRequest(RequestEvent $event): void
5858
/**
5959
* @return array<string, string>
6060
*/
61-
public static function getSubscribedEvents(): array
61+
public static function getSubscribedEvents()
6262
{
6363
return array(
6464
KernelEvents::REQUEST => 'onKernelRequest',

0 commit comments

Comments
 (0)