소스 검색

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) {