/
opt
/
alt
/
php55
/
usr
/
share
/
pear
/
Symfony
/
Component
/
Security
/
Core
/
Exception
/
/opt/alt/php55/usr/share/pear/Symfony/Component/Security/Core/Exception
mkdir
upload
Name
Size
Mode
Actions
AccessDeniedException.php
645
0644
edit
dl
rm
AccountExpiredException.php
656
0644
edit
dl
rm
AccountStatusException.php
1345
0644
edit
dl
rm
AuthenticationCredentialsNotFoundException.php
755
0644
edit
dl
rm
AuthenticationException.php
1810
0644
edit
dl
rm
AuthenticationServiceException.php
765
0644
edit
dl
rm
BadCredentialsException.php
661
0644
edit
dl
rm
CookieTheftException.php
757
0644
edit
dl
rm
CredentialsExpiredException.php
682
0644
edit
dl
rm
DisabledException.php
644
0644
edit
dl
rm
ExceptionInterface.php
442
0644
edit
dl
rm
InsufficientAuthenticationException.php
820
0644
edit
dl
rm
InvalidArgumentException.php
514
0644
edit
dl
rm
InvalidCsrfTokenException.php
651
0644
edit
dl
rm
LockedException.php
634
0644
edit
dl
rm
LogoutException.php
627
0644
edit
dl
rm
NonceExpiredException.php
699
0644
edit
dl
rm
ProviderNotFoundException.php
761
0644
edit
dl
rm
RuntimeException.php
490
0644
edit
dl
rm
SessionUnavailableException.php
904
0644
edit
dl
rm
TokenNotFoundException.php
657
0644
edit
dl
rm
UnsupportedUserException.php
572
0644
edit
dl
rm
UsernameNotFoundException.php
1405
0644
edit
dl
rm
Edit:
/opt/alt/php55/usr/share/pear/Symfony/Component/Security/Core/Exception/AuthenticationException.php
(1810B)
<?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; use Symfony\Component\Security\Core\Authentication\Token\TokenInterface; /** * AuthenticationException is the base class for all authentication exceptions. * * @author Fabien Potencier <fabien@symfony.com> * @author Alexander <iam.asm89@gmail.com> */ class AuthenticationException extends \RuntimeException implements \Serializable { private $token; /** * Get the token. * * @return TokenInterface */ public function getToken() { return $this->token; } /** * Set the token. * * @param TokenInterface $token */ public function setToken(TokenInterface $token) { $this->token = $token; } public function serialize() { return serialize(array( $this->token, $this->code, $this->message, $this->file, $this->line, )); } public function unserialize($str) { list( $this->token, $this->code, $this->message, $this->file, $this->line ) = unserialize($str); } /** * Message key to be used by the translation component. * * @return string */ public function getMessageKey() { return 'An authentication exception occurred.'; } /** * Message data to be used by the translation component. * * @return array */ public function getMessageData() { return array(); } }
Save
cmd:
run