services['http_kernel'] ?? self::getHttpKernelService($container)); if (isset($container->privates['security.authenticator.form_login.main'])) { return $container->privates['security.authenticator.form_login.main']; } $b = ($container->privates['security.http_utils'] ?? $container->load('getSecurity_HttpUtilsService')); $c = ($container->privates['logger'] ?? self::getLoggerService($container)); $d = new \Symfony\Component\Security\Http\Authentication\DefaultAuthenticationSuccessHandler($b, [], $c); $d->setOptions(['login_path' => 'login', 'always_use_default_target_path' => false, 'default_target_path' => '/', 'target_path_parameter' => '_target_path', 'use_referer' => false]); $d->setFirewallName('main'); $e = new \Symfony\Component\Security\Http\Authentication\DefaultAuthenticationFailureHandler($a, $b, [], $c); $e->setOptions(['login_path' => 'login', 'failure_path' => NULL, 'failure_forward' => false, 'failure_path_parameter' => '_failure_path']); return $container->privates['security.authenticator.form_login.main'] = new \Symfony\Component\Security\Http\Authenticator\FormLoginAuthenticator($b, ($container->privates['security.user.provider.concrete.app_user_provider'] ?? $container->load('getSecurity_User_Provider_Concrete_AppUserProviderService')), $d, $e, ['login_path' => 'login', 'check_path' => 'login', 'enable_csrf' => true, 'use_forward' => false, 'username_parameter' => '_username', 'password_parameter' => '_password', 'csrf_parameter' => '_csrf_token', 'csrf_token_id' => 'authenticate', 'post_only' => true, 'form_only' => false]); } }