Skip to content

Commit

Permalink
bug #79 Fix undefined class GuardAuthenticator (ChiarilloMassimo)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
weaverryan committed Dec 4, 2017
2 parents d9688d4 + 25661b9 commit bf97703
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Resources/skeleton/authenticator/Empty.tpl.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
use Symfony\Component\Security\Core\Exception\AuthenticationException;
use Symfony\Component\Security\Core\User\UserInterface;
use Symfony\Component\Security\Core\User\UserProviderInterface;
use Symfony\Component\Security\Guard\GuardAuthenticator;
use Symfony\Component\Security\Guard\AbstractGuardAuthenticator;

class <?= $class_name ?> extends GuardAuthenticator
class <?= $class_name ?> extends AbstractGuardAuthenticator
{
public function supports(Request $request)
{
Expand Down

0 comments on commit bf97703

Please sign in to comment.