From da9b16f45eb061adae9aab38f10339a239135478 Mon Sep 17 00:00:00 2001 From: Ishiki Date: Wed, 24 Jul 2019 12:17:40 +0300 Subject: [PATCH] OrganizationBasicAuthenticationListener must implement ListenerInterface Due to missing ListenerInterface functional tests are not working. --- .../Http/Firewall/OrganizationBasicAuthenticationListener.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Oro/Bundle/SecurityBundle/Http/Firewall/OrganizationBasicAuthenticationListener.php b/src/Oro/Bundle/SecurityBundle/Http/Firewall/OrganizationBasicAuthenticationListener.php index e00a9c57b51..d0873494356 100644 --- a/src/Oro/Bundle/SecurityBundle/Http/Firewall/OrganizationBasicAuthenticationListener.php +++ b/src/Oro/Bundle/SecurityBundle/Http/Firewall/OrganizationBasicAuthenticationListener.php @@ -12,8 +12,9 @@ use Symfony\Component\Security\Core\Authentication\Token\UsernamePasswordToken; use Symfony\Component\Security\Core\Exception\AuthenticationException; use Symfony\Component\Security\Http\EntryPoint\AuthenticationEntryPointInterface; +use Symfony\Component\Security\Http\Firewall\ListenerInterface; -class OrganizationBasicAuthenticationListener +class OrganizationBasicAuthenticationListener implements ListenerInterface { /** @var TokenStorageInterface */ protected $tokenStorage;