diff options
author | Fabien Potencier <fabien.potencier@gmail.com> | 2015-06-09 17:06:55 +0200 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2015-06-09 17:06:55 +0200 |
commit | 1b4222e6f3132eba8bbb6f2550c713c62829dfe1 (patch) | |
tree | faa1bfe390032f4ed39acd5be319762061de01ed /Http | |
parent | 18990f544173a085121a2982d1132277080ff756 (diff) | |
parent | 28720becb233c5a040e9c9f636f98ea0b6f11149 (diff) | |
download | symfony-security-1b4222e6f3132eba8bbb6f2550c713c62829dfe1.zip symfony-security-1b4222e6f3132eba8bbb6f2550c713c62829dfe1.tar.gz symfony-security-1b4222e6f3132eba8bbb6f2550c713c62829dfe1.tar.bz2 |
Merge branch '2.7' into 2.8
* 2.7:
[Console] SymfonyStyle : Fix blocks wordwrapping
[Console] SymfonyStyle : Fix blocks output is broken on windows cmd
[Validator] remove partial deprecation annotation
Updated UPGRADE-2.4.md
[Form] Support DateTimeImmutable in transform()
Show the FormType and FormTypeExtension in case of deprecated use of setDefaultOptions
[FrameworkBundle] Document form.csrf_provider service deprecation
[Form] add test to avoid regression of #14891
without this change allways the legacy code get called
[Form] Fix call to removed method (BC broken in 2.3)
Fix ask and askHidden methods
[HttpFoundation] Get response content as resource several times for PHP >= 5.6
Change error message to reflect SecurityContext deprecation.
fixed merge
Issue #14815
[Console] SymfonyStyle : fix & automate block gaps.
[Console] SymfonyStyle : Improve EOL consistency by relying on output instance
Improved duplicated code in FileLocator
Diffstat (limited to 'Http')
-rw-r--r-- | Http/Firewall/AccessListener.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Http/Firewall/AccessListener.php b/Http/Firewall/AccessListener.php index 6fd68f3..c234317 100644 --- a/Http/Firewall/AccessListener.php +++ b/Http/Firewall/AccessListener.php @@ -50,7 +50,7 @@ class AccessListener implements ListenerInterface public function handle(GetResponseEvent $event) { if (null === $token = $this->tokenStorage->getToken()) { - throw new AuthenticationCredentialsNotFoundException('A Token was not found in the SecurityContext.'); + throw new AuthenticationCredentialsNotFoundException('A Token was not found in the TokenStorage.'); } $request = $event->getRequest(); |