瀏覽代碼

more verbose checking

Christian Schaefer 14 年之前
父節點
當前提交
a34f5588a3
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/Symfony/Component/Security/Core/Authentication/AuthenticationProviderManager.php

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

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