diff options
author | Fabien Potencier <fabien.potencier@gmail.com> | 2012-12-29 21:07:36 +0100 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2012-12-29 21:07:36 +0100 |
commit | 2b114cf99c17d0e4117458774d9a8ef46e4ff7fb (patch) | |
tree | ffd1a85516e3ea5cc0c56f294d96e2f60b8e28a0 /Core/Util | |
parent | 6ef999b2d566c59819f99e0eeab77940fbd0d77c (diff) | |
download | symfony-security-2b114cf99c17d0e4117458774d9a8ef46e4ff7fb.zip symfony-security-2b114cf99c17d0e4117458774d9a8ef46e4ff7fb.tar.gz symfony-security-2b114cf99c17d0e4117458774d9a8ef46e4ff7fb.tar.bz2 |
fixed CS
Diffstat (limited to 'Core/Util')
-rw-r--r-- | Core/Util/StringUtils.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Core/Util/StringUtils.php b/Core/Util/StringUtils.php index b13408a..2e8925d 100644 --- a/Core/Util/StringUtils.php +++ b/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; } } |