diff options
author | Hugo Hamon <hugo.hamon@sensiolabs.com> | 2014-12-29 17:12:05 +0100 |
---|---|---|
committer | Hugo Hamon <hugo.hamon@sensiolabs.com> | 2015-01-05 15:57:16 +0100 |
commit | c74590b30c5dd089e5a1c1ee2828852bc0a79ab1 (patch) | |
tree | 975c14e1dc087cbaf79bfafa7233e1bf9a2524cf | |
parent | 7c3ed12a9ba65db90f7c3b8333c5c8ac7fae76ee (diff) | |
download | symfony-security-c74590b30c5dd089e5a1c1ee2828852bc0a79ab1.zip symfony-security-c74590b30c5dd089e5a1c1ee2828852bc0a79ab1.tar.gz symfony-security-c74590b30c5dd089e5a1c1ee2828852bc0a79ab1.tar.bz2 |
Reverted trigger_error() function calls on deprecated interfaces to prevent breaking third party projects implementing them.
-rw-r--r-- | Core/SecurityContextInterface.php | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Core/SecurityContextInterface.php b/Core/SecurityContextInterface.php index 0a77f00..0ad7bd3 100644 --- a/Core/SecurityContextInterface.php +++ b/Core/SecurityContextInterface.php @@ -11,8 +11,6 @@ namespace Symfony\Component\Security\Core; -trigger_error('The '.__NAMESPACE__.'\SecurityContextInterface interface is deprecated since version 2.6 and will be removed in 3.0. Use both Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorageInterface and Symfony\Component\Security\Core\Authorization\AuthorizationCheckerInterface interfaces instead.', E_USER_DEPRECATED); - use Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorageInterface; use Symfony\Component\Security\Core\Authorization\AuthorizationCheckerInterface; |