summaryrefslogtreecommitdiffstats
path: root/Core/SecurityContextInterface.php
Commit message (Collapse)AuthorAgeFilesLines
* Don't trigger deprecation on interfacesv2.7.4Nicolas Grekas2015-08-301-2/+0
|
* fixes CSFabien Potencier2015-08-241-0/+1
|
* Silence invasive deprecation warnings, opt-in for warningsv2.7.1reecefowell2015-06-081-1/+1
|
* [Security] removed usage of the deprecated SecurityContextInterfaceFabien Potencier2015-01-081-0/+2
|
* [Debug] track and report deprecated classes and interfacesNicolas Grekas2014-12-301-1/+1
|
* Merge branch '2.5'Fabien Potencier2014-10-261-2/+2
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 2.5: Remove aligned '=>' and '=' Break infinite loop while resolving aliases [Security][listener] change priority of switchuser Improved the phpdoc for security token classes bumped Symfony version to 2.5.7 updated VERSION for 2.5.6 updated CHANGELOG for 2.5.6 bumped Symfony version to 2.3.22 updated VERSION for 2.3.21 update CONTRIBUTORS for 2.3.21 updated CHANGELOG for 2.3.21 Conflicts: src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/ConfigurationTest.php src/Symfony/Bundle/SecurityBundle/DependencyInjection/Security/Factory/AbstractFactory.php src/Symfony/Bundle/TwigBundle/Controller/ExceptionController.php src/Symfony/Component/Debug/ErrorHandler.php src/Symfony/Component/Debug/ExceptionHandler.php src/Symfony/Component/Form/Extension/Core/Type/BaseType.php src/Symfony/Component/Form/Extension/Core/Type/ChoiceType.php src/Symfony/Component/Form/Extension/Core/Type/DateTimeType.php src/Symfony/Component/Form/Extension/Core/Type/DateType.php src/Symfony/Component/Form/Extension/Core/Type/TimeType.php src/Symfony/Component/Form/Extension/Validator/Type/FormTypeValidatorExtension.php src/Symfony/Component/HttpFoundation/Request.php src/Symfony/Component/HttpFoundation/Session/Storage/Handler/MongoDbSessionHandler.php src/Symfony/Component/HttpFoundation/Session/Storage/Handler/PdoSessionHandler.php src/Symfony/Component/HttpKernel/Kernel.php src/Symfony/Component/Security/Core/SecurityContextInterface.php src/Symfony/Component/Security/Http/Authentication/DefaultAuthenticationFailureHandler.php src/Symfony/Component/Security/Http/Authentication/DefaultAuthenticationSuccessHandler.php src/Symfony/Component/Security/Http/Firewall/AnonymousAuthenticationListener.php src/Symfony/Component/Serializer/Serializer.php src/Symfony/Component/Validator/Constraints/File.php
| * Remove aligned '=>' and '='Disquedur2014-10-261-2/+2
| |
* | [DX] Moved constants to a final classIltar van der Berg2014-09-291-1/+4
| |
* | Split of the SecurityContext to AuthorizationChecker and TokenStorageIltar van der Berg2014-09-241-29/+4
|/
* fixed types in phpdocsFabien Potencier2014-04-161-1/+1
|
* [Component/Security] Fixed some phpdocs in Security/CoreJoseph Bielawski2014-01-171-2/+2
|
* fixed CSFabien Potencier2012-07-091-3/+3
|
* updated license blocksEriksen Costa2012-03-311-3/+3
|
* Revert "merged branch kriswallsmith/security/demeter-fix (PR #2816)"Fabien Potencier2011-12-301-9/+0
| | | | | This reverts commit 76ba2bc7accbea356c9a5bf5231bf786f50ffd90, reversing changes made to 4730f4303b1a266185226ee05fa9f93f0468a2e1.
* merged 2.0Fabien Potencier2011-12-131-0/+1
|\
| * [DoctrineBridge] fixed some CSFabien Potencier2011-12-131-0/+2
| |
* | [Security] added SecurityContextInterface::getUser()Kris Wallsmith2011-12-081-0/+9
| | | | | | | | | | | | | | | | | | | | | | | | This changes helps the common use case of fetching the current user and better complies with the Law of Demeter (http://en.wikipedia.org/wiki/Law_of_Demeter). Before (still works): $token = $context->getToken(); $user = $token ? $token->getUser() : null; After: $user = $context->getUser();
* | Removed redundant "@return void"-sHelmer Aaviksoo2011-10-071-1/+0
|/
* fixed CSFabien Potencier2011-06-081-1/+1
|
* added missing license headersFabien Potencier2011-05-311-0/+9
|
* capitalized 'boolean'Eriksen Costa2011-04-271-1/+1
|
* [Security/Core] force implementations to accept null valuesJohannes Schmitt2011-04-201-1/+1
|
* [Security] Added missing phpdocTim Nagel2011-04-161-0/+20
|
* [Security] various changes, see belowJohannes Schmitt2011-03-101-2/+2
| | | | | | - visibility changes from protected to private - AccountInterface -> UserInterface - SecurityContext::vote() -> SecurityContext::isGranted()
* [Security] Refactored security context, moved getUser() implementation to ↵Johannes Schmitt2011-02-121-0/+21
templating