From 8269589c91c7a86bba31dd6ba69803adbb4a249e Mon Sep 17 00:00:00 2001 From: Anthony Ferrara Date: Mon, 23 Mar 2015 11:54:32 -0400 Subject: [PATCH] CS fixing --- 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 95c8513ed755..c43a41a1c76c 100644 --- a/src/Symfony/Component/Security/Core/Util/StringUtils.php +++ b/src/Symfony/Component/Security/Core/Util/StringUtils.php @@ -82,7 +82,7 @@ public static function safeStrlen($string) if ($func_exists === null) { $func_exists = function_exists('mb_strlen'); } - + if ($func_exists) { return mb_strlen($string, '8bit'); }