From ecb22de040793372b49fe176bdc65572d06718a7 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Sat, 29 Dec 2012 21:07:36 +0100 Subject: [PATCH] fixed CS --- src/Symfony/Component/Security/Core/Util/StringUtils.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/Security/Core/Util/StringUtils.php b/src/Symfony/Component/Security/Core/Util/StringUtils.php index b13408aaf7..2e8925d4a6 100644 --- a/src/Symfony/Component/Security/Core/Util/StringUtils.php +++ b/src/Symfony/Component/Security/Core/Util/StringUtils.php @@ -55,6 +55,6 @@ class StringUtils } // They are only identical strings if $result is exactly 0... - return $result === 0; + return 0 === $result; } }