summaryrefslogtreecommitdiffstats
path: root/Core/SecurityContextInterface.php
diff options
context:
space:
mode:
authorFabien Potencier <fabien.potencier@gmail.com>2016-05-09 14:21:30 -0500
committerFabien Potencier <fabien.potencier@gmail.com>2016-05-09 14:23:35 -0500
commit1eebd2bd10b38c068aa05aa123201c53def1bc6d (patch)
treeb7513ac6a44bb84ea794508fd014c0a3bd64e202 /Core/SecurityContextInterface.php
parent083c455db53347f2e8e4894b5f4bf7f06226d086 (diff)
parent83b345fdf01cb980fb8bd5e15224573d93b8e369 (diff)
downloadsymfony-security-1eebd2bd10b38c068aa05aa123201c53def1bc6d.zip
symfony-security-1eebd2bd10b38c068aa05aa123201c53def1bc6d.tar.gz
symfony-security-1eebd2bd10b38c068aa05aa123201c53def1bc6d.tar.bz2
Merge branch '2.3' into 2.7v2.7.13
* 2.3: limited the maximum length of a submitted username
Diffstat (limited to 'Core/SecurityContextInterface.php')
-rw-r--r--Core/SecurityContextInterface.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/Core/SecurityContextInterface.php b/Core/SecurityContextInterface.php
index 2a06ca4..73edd23 100644
--- a/Core/SecurityContextInterface.php
+++ b/Core/SecurityContextInterface.php
@@ -26,4 +26,5 @@ interface SecurityContextInterface extends TokenStorageInterface, AuthorizationC
const ACCESS_DENIED_ERROR = Security::ACCESS_DENIED_ERROR;
const AUTHENTICATION_ERROR = Security::AUTHENTICATION_ERROR;
const LAST_USERNAME = Security::LAST_USERNAME;
+ const MAX_USERNAME_LENGTH = Security::MAX_USERNAME_LENGTH;
}