8000 Depend on LogoutHandlerInterface · symfony/symfony@994700f · GitHub
[go: up one dir, main page]

Skip to content

Commit 994700f

Browse files
committed
Depend on LogoutHandlerInterface
1 parent a73523b commit 994700f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Symfony/Component/Security/Http/EventListener/RememberMeLogoutListener.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
1515
use Symfony\Component\Security\Core\Exception\LogicException;
1616
use Symfony\Component\Security\Http\Event\LogoutEvent;
17-
use Symfony\Component\Security\Http\RememberMe\AbstractRememberMeServices;
17+
use Symfony\Component\Security\Http\Logout\LogoutHandlerInterface;
1818

1919
/**
2020
* @author Wouter de Jong <wouter@wouterj.nl>
@@ -25,7 +25,7 @@ class RememberMeLogoutListener implements EventSubscriberInterface
2525
{
2626
private $rememberMeServices;
2727

28-
public function __construct(AbstractRememberMeServices $rememberMeServices)
28+
public function __construct(LogoutHandlerInterface $rememberMeServices)
2929
{
3030
$this->rememberMeServices = $rememberMeServices;
3131
}

0 commit comments

Comments
 (0)
0