Файловый менеджер - Редактировать - /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/security-core/Exception/TooManyLoginAttemptsAuthenticationException.php
Ðазад
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Security\Core\Exception; /** * This exception is thrown if there where too many failed login attempts in * this session. * * @author Wouter de Jong <wouter@wouterj.nl> */ class TooManyLoginAttemptsAuthenticationException extends AuthenticationException { public function __construct( private ?int $threshold = null, ) { } public function getMessageData(): array { return [ '%minutes%' => $this->threshold, '%count%' => (int) $this->threshold, ]; } public function getMessageKey(): string { return 'Too many failed login attempts, please try again '.($this->threshold ? 'in %minutes% minute'.($this->threshold > 1 ? 's' : '').'.' : 'later.'); } public function __serialize(): array { return [$this->threshold, parent::__serialize()]; } public function __unserialize(array $data): void { [$this->threshold, $parentData] = $data; $parentData = \is_array($parentData) ? $parentData : unserialize($parentData); parent::__unserialize($parentData); } }
| ver. 1.1 | |
.
| PHP 8.3.30 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0 |
proxy
|
phpinfo
|
ÐаÑтройка