Browse Source

more verbose checking

Christian Schaefer 14 years ago
parent
commit
a34f5588a3

+ 1 - 1
src/Symfony/Component/Security/Core/Authentication/AuthenticationProviderManager.php

@@ -59,7 +59,7 @@ class AuthenticationProviderManager implements AuthenticationManagerInterface
 
 
             try {
             try {
                 $result = $provider->authenticate($token);
                 $result = $provider->authenticate($token);
-                if (null != $result) {
+                if (null !== $result) {
                     break;
                     break;
                 }
                 }
             } catch (AccountStatusException $e) {
             } catch (AccountStatusException $e) {