diff options
author | Anthony Ferrara <ircmaxell@gmail.com> | 2015-03-23 11:54:32 -0400 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2015-03-25 10:28:01 +0100 |
commit | 25343ea9df478772fafb6acfae93bb75f84ff6c6 (patch) | |
tree | 448d057f1f53349d313b489041066c289dcaaca4 | |
parent | 2c5ee0dff834ea8d1cb51870ba2f8ba04b9c8e9f (diff) | |
download | symfony-security-25343ea9df478772fafb6acfae93bb75f84ff6c6.zip symfony-security-25343ea9df478772fafb6acfae93bb75f84ff6c6.tar.gz symfony-security-25343ea9df478772fafb6acfae93bb75f84ff6c6.tar.bz2 |
CS fixing
-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 95c8513..c43a41a 100644 --- a/Core/Util/StringUtils.php +++ b/Core/Util/StringUtils.php @@ -82,7 +82,7 @@ class StringUtils if ($func_exists === null) { $func_exists = function_exists('mb_strlen'); } - + if ($func_exists) { return mb_strlen($string, '8bit'); } |