Skip to content

Commit bf97703

Browse files
committed
bug #79 Fix undefined class GuardAuthenticator (ChiarilloMassimo)
This PR was merged into the 1.0-dev branch. Discussion ---------- Fix undefined class GuardAuthenticator Class `Symfony\Component\Security\Guard\GuardAuthenticator;` does not exist. # How to test - [ ] `./bin/console make:auth` - [ ] Open your `Authenticator` Commits ------- 25661b9 Fix undefined class GuardAuthenticator
2 parents d9688d4 + 25661b9 commit bf97703

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)