Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kurozumi committed Nov 29, 2022
1 parent c3876b0 commit a3bfd11
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions EventSubscriber/AccessTokenSubscriber.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,10 @@ class AccessTokenSubscriber implements EventSubscriberInterface
private $session;

public function __construct(
Context $requestContext,
ClientRegistry $clientRegistry,
Context $requestContext,
ClientRegistry $clientRegistry,
SessionInterface $session
)
{
) {
$this->requestContext = $requestContext;
$this->clientRegistry = $clientRegistry;
$this->session = $session;
Expand Down Expand Up @@ -75,7 +74,7 @@ public function onKernelRequest(RequestEvent $event)
public static function getSubscribedEvents(): array
{
return [
KernelEvents::REQUEST => 'onKernelRequest'
KernelEvents::REQUEST => 'onKernelRequest',
];
}
}

0 comments on commit a3bfd11

Please sign in to comment.