( ! ) Warning: Undefined variable $namespace in /home/homes/florianefave/sites/minou/vendor/symfony/maker-bundle/src/Resources/skeleton/authenticator/LoginFormAuthenticator.tpl.php on line 3
Call Stack
#TimeMemoryFunctionLocation
10.0100362936{main}( ).../LoginFormAuthenticator.tpl.php:0
;
( ! ) Warning: Undefined variable $use_statements in /home/homes/florianefave/sites/minou/vendor/symfony/maker-bundle/src/Resources/skeleton/authenticator/LoginFormAuthenticator.tpl.php on line 5
Call Stack
#TimeMemoryFunctionLocation
10.0100362936{main}( ).../LoginFormAuthenticator.tpl.php:0
class
( ! ) Warning: Undefined variable $class_name in /home/homes/florianefave/sites/minou/vendor/symfony/maker-bundle/src/Resources/skeleton/authenticator/LoginFormAuthenticator.tpl.php on line 7
Call Stack
#TimeMemoryFunctionLocation
10.0100362936{main}( ).../LoginFormAuthenticator.tpl.php:0
extends AbstractLoginFormAuthenticator { use TargetPathTrait; public const LOGIN_ROUTE = 'app_login'; public function __construct(private UrlGeneratorInterface $urlGenerator) { } public function authenticate(Request $request): Passport { $
( ! ) Warning: Undefined variable $username_field_var in /home/homes/florianefave/sites/minou/vendor/symfony/maker-bundle/src/Resources/skeleton/authenticator/LoginFormAuthenticator.tpl.php on line 19
Call Stack
#TimeMemoryFunctionLocation
10.0100362936{main}( ).../LoginFormAuthenticator.tpl.php:0
= $request->request->get('
( ! ) Warning: Undefined variable $username_field in /home/homes/florianefave/sites/minou/vendor/symfony/maker-bundle/src/Resources/skeleton/authenticator/LoginFormAuthenticator.tpl.php on line 19
Call Stack
#TimeMemoryFunctionLocation
10.0100362936{main}( ).../LoginFormAuthenticator.tpl.php:0
', ''); $request->getSession()->set(Security::LAST_USERNAME, $
( ! ) Warning: Undefined variable $username_field_var in /home/homes/florianefave/sites/minou/vendor/symfony/maker-bundle/src/Resources/skeleton/authenticator/LoginFormAuthenticator.tpl.php on line 21
Call Stack
#TimeMemoryFunctionLocation
10.0100362936{main}( ).../LoginFormAuthenticator.tpl.php:0
); return new Passport( new UserBadge($
( ! ) Warning: Undefined variable $username_field_var in /home/homes/florianefave/sites/minou/vendor/symfony/maker-bundle/src/Resources/skeleton/authenticator/LoginFormAuthenticator.tpl.php on line 24
Call Stack
#TimeMemoryFunctionLocation
10.0100362936{main}( ).../LoginFormAuthenticator.tpl.php:0
), new PasswordCredentials($request->request->get('password', '')), [ new CsrfTokenBadge('authenticate', $request->request->get('_csrf_token')), ] ); } public function onAuthenticationSuccess(Request $request, TokenInterface $token, string $firewallName): ?Response { if ($targetPath = $this->getTargetPath($request->getSession(), $firewallName)) { return new RedirectResponse($targetPath); } // For example: // return new RedirectResponse($this->urlGenerator->generate('some_route')); throw new \Exception('TODO: provide a valid redirect inside '.__FILE__); } protected function getLoginUrl(Request $request): string { return $this->urlGenerator->generate(self::LOGIN_ROUTE); } }