( ! ) Warning: Undefined variable $namespace in /work/home/ntrugeon/www/passibete/vendor/symfony/maker-bundle/src/Resources/skeleton/authenticator/LoginFormAuthenticator.tpl.php on line 3
Call Stack
#TimeMemoryFunctionLocation
10.0014480720{main}( ).../LoginFormAuthenticator.tpl.php:0
;
( ! ) Warning: Undefined variable $user_is_entity in /work/home/ntrugeon/www/passibete/vendor/symfony/maker-bundle/src/Resources/skeleton/authenticator/LoginFormAuthenticator.tpl.php on line 5
Call Stack
#TimeMemoryFunctionLocation
10.0014480720{main}( ).../LoginFormAuthenticator.tpl.php:0

( ! ) Warning: Undefined variable $user_is_entity in /work/home/ntrugeon/www/passibete/vendor/symfony/maker-bundle/src/Resources/skeleton/authenticator/LoginFormAuthenticator.tpl.php on line 6
Call Stack
#TimeMemoryFunctionLocation
10.0014480720{main}( ).../LoginFormAuthenticator.tpl.php:0
use Symfony\Component\HttpFoundation\RedirectResponse; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\Routing\Generator\UrlGeneratorInterface; use Symfony\Component\Security\Core\Authentication\Token\TokenInterface;
( ! ) Warning: Undefined variable $user_needs_encoder in /work/home/ntrugeon/www/passibete/vendor/symfony/maker-bundle/src/Resources/skeleton/authenticator/LoginFormAuthenticator.tpl.php on line 11
Call Stack
#TimeMemoryFunctionLocation
10.0014480720{main}( ).../LoginFormAuthenticator.tpl.php:0
use Symfony\Component\Security\Core\Exception\InvalidCsrfTokenException; use Symfony\Component\Security\Core\Exception\UsernameNotFoundException; use Symfony\Component\Security\Core\Security; use Symfony\Component\Security\Core\User\UserInterface; use Symfony\Component\Security\Core\User\UserProviderInterface; use Symfony\Component\Security\Csrf\CsrfToken; use Symfony\Component\Security\Csrf\CsrfTokenManagerInterface; use Symfony\Component\Security\Guard\Authenticator\AbstractFormLoginAuthenticator;
( ! ) Warning: Undefined variable $user_needs_encoder in /work/home/ntrugeon/www/passibete/vendor/symfony/maker-bundle/src/Resources/skeleton/authenticator/LoginFormAuthenticator.tpl.php on line 20
Call Stack
#TimeMemoryFunctionLocation
10.0014480720{main}( ).../LoginFormAuthenticator.tpl.php:0
use Symfony\Component\Security\Http\Util\TargetPathTrait; class
( ! ) Warning: Undefined variable $class_name in /work/home/ntrugeon/www/passibete/vendor/symfony/maker-bundle/src/Resources/skeleton/authenticator/LoginFormAuthenticator.tpl.php on line 23
Call Stack
#TimeMemoryFunctionLocation
10.0014480720{main}( ).../LoginFormAuthenticator.tpl.php:0
extends AbstractFormLoginAuthenticator { use TargetPathTrait; public const LOGIN_ROUTE = 'app_login';
( ! ) Warning: Undefined variable $user_is_entity in /work/home/ntrugeon/www/passibete/vendor/symfony/maker-bundle/src/Resources/skeleton/authenticator/LoginFormAuthenticator.tpl.php on line 29
Call Stack
#TimeMemoryFunctionLocation
10.0014480720{main}( ).../LoginFormAuthenticator.tpl.php:0
private $urlGenerator; private $csrfTokenManager;
( ! ) Warning: Undefined variable $user_needs_encoder in /work/home/ntrugeon/www/passibete/vendor/symfony/maker-bundle/src/Resources/skeleton/authenticator/LoginFormAuthenticator.tpl.php on line 32
Call Stack
#TimeMemoryFunctionLocation
10.0014480720{main}( ).../LoginFormAuthenticator.tpl.php:0
public function __construct(
( ! ) Warning: Undefined variable $user_is_entity in /work/home/ntrugeon/www/passibete/vendor/symfony/maker-bundle/src/Resources/skeleton/authenticator/LoginFormAuthenticator.tpl.php on line 34
Call Stack
#TimeMemoryFunctionLocation
10.0014480720{main}( ).../LoginFormAuthenticator.tpl.php:0
UrlGeneratorInterface $urlGenerator, CsrfTokenManagerInterface $csrfTokenManager
( ! ) Warning: Undefined variable $user_needs_encoder in /work/home/ntrugeon/www/passibete/vendor/symfony/maker-bundle/src/Resources/skeleton/authenticator/LoginFormAuthenticator.tpl.php on line 34
Call Stack
#TimeMemoryFunctionLocation
10.0014480720{main}( ).../LoginFormAuthenticator.tpl.php:0
) {
( ! ) Warning: Undefined variable $user_is_entity in /work/home/ntrugeon/www/passibete/vendor/symfony/maker-bundle/src/Resources/skeleton/authenticator/LoginFormAuthenticator.tpl.php on line 36
Call Stack
#TimeMemoryFunctionLocation
10.0014480720{main}( ).../LoginFormAuthenticator.tpl.php:0
$this->urlGenerator = $urlGenerator; $this->csrfTokenManager = $csrfTokenManager;
( ! ) Warning: Undefined variable $user_needs_encoder in /work/home/ntrugeon/www/passibete/vendor/symfony/maker-bundle/src/Resources/skeleton/authenticator/LoginFormAuthenticator.tpl.php on line 39
Call Stack
#TimeMemoryFunctionLocation
10.0014480720{main}( ).../LoginFormAuthenticator.tpl.php:0
} public function supports(Request $request) { return self::LOGIN_ROUTE === $request->attributes->get('_route') && $request->isMethod('POST'); } public function getCredentials(Request $request) { $credentials = [ '
( ! ) Warning: Undefined variable $username_field in /work/home/ntrugeon/www/passibete/vendor/symfony/maker-bundle/src/Resources/skeleton/authenticator/LoginFormAuthenticator.tpl.php on line 51
Call Stack
#TimeMemoryFunctionLocation
10.0014480720{main}( ).../LoginFormAuthenticator.tpl.php:0
' => $request->request->get('
( ! ) Warning: Undefined variable $username_field in /work/home/ntrugeon/www/passibete/vendor/symfony/maker-bundle/src/Resources/skeleton/authenticator/LoginFormAuthenticator.tpl.php on line 51
Call Stack
#TimeMemoryFunctionLocation
10.0014480720{main}( ).../LoginFormAuthenticator.tpl.php:0
'), 'password' => $request->request->get('password'), 'csrf_token' => $request->request->get('_csrf_token'), ]; $request->getSession()->set( Security::LAST_USERNAME, $credentials['
( ! ) Warning: Undefined variable $username_field in /work/home/ntrugeon/www/passibete/vendor/symfony/maker-bundle/src/Resources/skeleton/authenticator/LoginFormAuthenticator.tpl.php on line 57
Call Stack
#TimeMemoryFunctionLocation
10.0014480720{main}( ).../LoginFormAuthenticator.tpl.php:0
'] ); return $credentials; } public function getUser($credentials, UserProviderInterface $userProvider) { $token = new CsrfToken('authenticate', $credentials['csrf_token']); if (!$this->csrfTokenManager->isTokenValid($token)) { throw new InvalidCsrfTokenException(); }
( ! ) Warning: Undefined variable $user_is_entity in /work/home/ntrugeon/www/passibete/vendor/symfony/maker-bundle/src/Resources/skeleton/authenticator/LoginFormAuthenticator.tpl.php on line 70
Call Stack
#TimeMemoryFunctionLocation
10.0014480720{main}( ).../LoginFormAuthenticator.tpl.php:0

( ! ) Warning: Undefined variable $username_field in /work/home/ntrugeon/www/passibete/vendor/symfony/maker-bundle/src/Resources/skeleton/authenticator/LoginFormAuthenticator.tpl.php on line 73
Call Stack
#TimeMemoryFunctionLocation
10.0014480720{main}( ).../LoginFormAuthenticator.tpl.php:0
// Load / create our user however you need. // You can do this by calling the user provider, or with custom logic here. $user = $userProvider->loadUserByUsername($credentials['']); if (!$user) { throw new UsernameNotFoundException('
( ! ) Warning: Undefined variable $username_field_label in /work/home/ntrugeon/www/passibete/vendor/symfony/maker-bundle/src/Resources/skeleton/authenticator/LoginFormAuthenticator.tpl.php on line 76
Call Stack
#TimeMemoryFunctionLocation
10.0014480720{main}( ).../LoginFormAuthenticator.tpl.php:0

( ! ) Deprecated: ucfirst(): Passing null to parameter #1 ($string) of type string is deprecated in /work/home/ntrugeon/www/passibete/vendor/symfony/maker-bundle/src/Resources/skeleton/authenticator/LoginFormAuthenticator.tpl.php on line 76
Call Stack
#TimeMemoryFunctionLocation
10.0014480720{main}( ).../LoginFormAuthenticator.tpl.php:0
20.0016480944ucfirst( $string = NULL ).../LoginFormAuthenticator.tpl.php:76
could not be found.'); } return $user; } public function checkCredentials($credentials, UserInterface $user) {
( ! ) Warning: Undefined variable $user_needs_encoder in /work/home/ntrugeon/www/passibete/vendor/symfony/maker-bundle/src/Resources/skeleton/authenticator/LoginFormAuthenticator.tpl.php on line 84
Call Stack
#TimeMemoryFunctionLocation
10.0014480720{main}( ).../LoginFormAuthenticator.tpl.php:0
// Check the user's password or other credentials and return true or false // If there are no credentials to check, you can just return true throw new \Exception('TODO: check the credentials inside '.__FILE__); } public function onAuthenticationSuccess(Request $request, TokenInterface $token,
( ! ) Warning: Undefined variable $provider_key_type_hint in /work/home/ntrugeon/www/passibete/vendor/symfony/maker-bundle/src/Resources/skeleton/authenticator/LoginFormAuthenticator.tpl.php on line 100
Call Stack
#TimeMemoryFunctionLocation
10.0014480720{main}( ).../LoginFormAuthenticator.tpl.php:0
$providerKey) { if ($targetPath = $this->getTargetPath($request->getSession(), $providerKey)) { 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() { return $this->urlGenerator->generate(self::LOGIN_ROUTE); } }