diff --git a/src/Symfony/Component/Security/Http/EventListener/RememberMeLogoutListener.php b/src/Symfony/Component/Security/Http/EventListener/RememberMeLogoutListener.php index 5fbd94b1a90af..614c4ea11f1c0 100644 --- a/src/Symfony/Component/Security/Http/EventListener/RememberMeLogoutListener.php +++ b/src/Symfony/Component/Security/Http/EventListener/RememberMeLogoutListener.php @@ -14,7 +14,7 @@ use Symfony\Component\EventDispatcher\EventSubscriberInterface; use Symfony\Component\Security\Core\Exception\LogicException; use Symfony\Component\Security\Http\Event\LogoutEvent; -use Symfony\Component\Security\Http\RememberMe\AbstractRememberMeServices; +use Symfony\Component\Security\Http\Logout\LogoutHandlerInterface; /** * @author Wouter de Jong @@ -25,7 +25,7 @@ class RememberMeLogoutListener implements EventSubscriberInterface { private $rememberMeServices; - public function __construct(AbstractRememberMeServices $rememberMeServices) + public function __construct(LogoutHandlerInterface $rememberMeServices) { $this->rememberMeServices = $rememberMeServices; }