8000 fixed CS · symfony/symfony@e6bcb1c · GitHub
[go: up one dir, main page]

Skip to content

Commit e6bcb1c

Browse files
committed
fixed CS
1 parent 408c6aa commit e6bcb1c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Symfony/Component/Security/Http/Tests/Authentication/SimpleAuthenticationHandlerTest.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
namespace Symfony\Component\Security\Http\Tests;
1313

1414
use Symfony\Component\Security\Core\Authentication\SimpleAuthenticatorInterface;
15+
use Symfony\Component\Security\Core\Exception\AuthenticationException;
1516
use Symfony\Component\Security\Http\Authentication\AuthenticationFailureHandlerInterface;
1617
use Symfony\Component\Security\Http\Authentication\AuthenticationSuccessHandlerInterface;
1718
use Symfony\Component\Security\Http\Authentication\SimpleAuthenticationHandler;
@@ -38,7 +39,7 @@ public function setUp()
3839
$this->request = $this->getMock('Symfony\Component\HttpFoundation\Request');
3940
$this->token = $this->getMock('Symfony\Component\Security\Core\Authentication\Token\TokenInterface');
4041
// No methods are invoked on the exception; we just assert on its class
41-
$this->authenticationException = new \Symfony\Component\Security\Core\Exception\AuthenticationException();
42+
$this->authenticationException = new AuthenticationException();
4243

4344
$this->response = $this->getMock('Symfony\Component\HttpFoundation\Response');
4445
}

0 commit comments

Comments
 (0)
0