Skip to content

Commit 25661b9

Browse files
committed
Fix undefined class GuardAuthenticator
1 parent 6137fe1 commit 25661b9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Resources/skeleton/authenticator/Empty.tpl.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
use Symfony\Component\Security\Core\Exception\AuthenticationException;
88
use Symfony\Component\Security\Core\User\UserInterface;
99
use Symfony\Component\Security\Core\User\UserProviderInterface;
10-
use Symfony\Component\Security\Guard\GuardAuthenticator;
10+
use Symfony\Component\Security\Guard\AbstractGuardAuthenticator;
1111

12-
class <?= $class_name ?> extends GuardAuthenticator
12+
class <?= $class_name ?> extends AbstractGuardAuthenticator
1313
{
1414
public function supports(Request $request)
1515
{

0 commit comments

Comments
 (0)