summaryrefslogtreecommitdiffstats
path: root/Core/Authentication
diff options
context:
space:
mode:
authorDariusz Ruminski <dariusz.ruminski@gmail.com>2015-03-21 11:51:07 +0100
committerDariusz Ruminski <dariusz.ruminski@gmail.com>2015-03-21 12:11:30 +0100
commit419d7792f0f74cb94cbf7bff159084564e32a1d0 (patch)
tree277bb6e7537835359375390677213faeeeab418b /Core/Authentication
parent708edd6eb185826c0d11e3aa71a8bf17664944ae (diff)
downloadsymfony-security-419d7792f0f74cb94cbf7bff159084564e32a1d0.zip
symfony-security-419d7792f0f74cb94cbf7bff159084564e32a1d0.tar.gz
symfony-security-419d7792f0f74cb94cbf7bff159084564e32a1d0.tar.bz2
CS: Convert double quotes to single quotes
Diffstat (limited to 'Core/Authentication')
-rw-r--r--Core/Authentication/Provider/DaoAuthenticationProvider.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/Core/Authentication/Provider/DaoAuthenticationProvider.php b/Core/Authentication/Provider/DaoAuthenticationProvider.php
index 4913be8..b7b4917 100644
--- a/Core/Authentication/Provider/DaoAuthenticationProvider.php
+++ b/Core/Authentication/Provider/DaoAuthenticationProvider.php
@@ -59,7 +59,7 @@ class DaoAuthenticationProvider extends UserAuthenticationProvider
throw new BadCredentialsException('The credentials were changed from another session.');
}
} else {
- if ("" === ($presentedPassword = $token->getCredentials())) {
+ if ('' === ($presentedPassword = $token->getCredentials())) {
throw new BadCredentialsException('The presented password cannot be empty.');
}