Skip to content
This repository was archived by the owner on May 31, 2024. It is now read-only.

Commit 5baa642

Browse files
sarciszewskifabpot
authored andcommitted
Whitespace
1 parent 6a162c7 commit 5baa642

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Core/Util/StringUtils.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,10 @@ public static function equals($knownString, $userInput)
6363
// They are only identical strings if $result is exactly 0...
6464
return 0 === $result;
6565
}
66-
66+
6767
/**
6868
* Return the number of bytes in a string
69-
*
69+
*
7070
* @param string $string The string whose length we wish to obtain
7171
* @return int
7272
*/
@@ -75,6 +75,7 @@ public static function safeStrlen($string)
7575
if (function_exists('mb_strlen')) {
7676
return mb_strlen($string, '8bit');
7777
}
78+
7879
return strlen($string);
7980
}
8081
}

0 commit comments

Comments
 (0)