summaryrefslogtreecommitdiffstats
path: root/Core/Authentication
diff options
context:
space:
mode:
authorFabien Potencier <fabien.potencier@gmail.com>2015-05-15 15:53:19 +0200
committerFabien Potencier <fabien.potencier@gmail.com>2015-05-15 15:53:19 +0200
commitc7f7fcfa6dbcd0ae71be8fb4b2c0dbbce8f38150 (patch)
tree01c4121145936e94ce249c50fe9a4753c3304ff1 /Core/Authentication
parentf81b1cd7a05c28ce191bc5d4295bbea7367368d4 (diff)
downloadsymfony-security-c7f7fcfa6dbcd0ae71be8fb4b2c0dbbce8f38150.zip
symfony-security-c7f7fcfa6dbcd0ae71be8fb4b2c0dbbce8f38150.tar.gz
symfony-security-c7f7fcfa6dbcd0ae71be8fb4b2c0dbbce8f38150.tar.bz2
fixed CS
Diffstat (limited to 'Core/Authentication')
-rw-r--r--Core/Authentication/Provider/PreAuthenticatedAuthenticationProvider.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/Core/Authentication/Provider/PreAuthenticatedAuthenticationProvider.php b/Core/Authentication/Provider/PreAuthenticatedAuthenticationProvider.php
index c17a954..4f73254 100644
--- a/Core/Authentication/Provider/PreAuthenticatedAuthenticationProvider.php
+++ b/Core/Authentication/Provider/PreAuthenticatedAuthenticationProvider.php
@@ -60,7 +60,7 @@ class PreAuthenticatedAuthenticationProvider implements AuthenticationProviderIn
throw new BadCredentialsException('No pre-authenticated principal found in request.');
}
- $user = $this->userProvider->loadUserByUsername($user);
+ $user = $this->userProvider->loadUserByUsername($user);
$this->userChecker->checkPostAuth($user);