diff options
Diffstat (limited to 'Core/SecuritySessionStorageInterface.php')
-rw-r--r-- | Core/SecuritySessionStorageInterface.php | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/Core/SecuritySessionStorageInterface.php b/Core/SecuritySessionStorageInterface.php new file mode 100644 index 0000000..47c0bbe --- /dev/null +++ b/Core/SecuritySessionStorageInterface.php @@ -0,0 +1,24 @@ +<?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; + +/** + * The SecuritySessionStorageInterface. + * + * @author Johannes M. Schmitt <schmittjoh@gmail.com> + */ +interface SecuritySessionStorageInterface +{ + const ACCESS_DENIED_ERROR = '_security.403_error'; + const AUTHENTICATION_ERROR = '_security.last_error'; + const LAST_USERNAME = '_security.last_username'; +} |