/opt/alt/php55/usr/share/pear/Symfony/Component/Security/Core
NameSizeModeActions
Authentication/-0755rm
Authorization/-0755rm
Encoder/-0755rm
Event/-0755rm
Exception/-0755rm
Resources/-0755rm
Role/-0755rm
User/-0755rm
Util/-0755rm
Validator/-0755rm
AuthenticationEvents.php10270644editdlrm
SecurityContext.php28490644editdlrm
SecurityContextInterface.php14190644editdlrm
Edit: /opt/alt/php55/usr/share/pear/Symfony/Component/Security/Core/AuthenticationEvents.php (1027B)
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Security\Core; final class AuthenticationEvents { /** * The AUTHENTICATION_SUCCESS event occurs after a user is authenticated * by one provider. * * The event listener method receives a * Symfony\Component\Security\Core\Event\AuthenticationEvent instance. * * @var string */ const AUTHENTICATION_SUCCESS = 'security.authentication.success'; /** * The AUTHENTICATION_FAILURE event occurs after a user cannot be * authenticated by any of the providers. * * The event listener method receives a * Symfony\Component\Security\Core\Event\AuthenticationFailureEvent * instance. * * @var string */ const AUTHENTICATION_FAILURE = 'security.authentication.failure'; }