Passed
Push — master ( 20b79e...0831e5 )
by Martijn
01:32
created
classes/Sentence.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -57,9 +57,9 @@
 block discarded – undo
57 57
      */
58 58
     private static function mbSplit($pattern, $string, $limit = -1, $flags = 0)
59 59
     {
60
-        $split_no_empty = (bool)($flags & PREG_SPLIT_NO_EMPTY);
61
-        $offset_capture = (bool)($flags & PREG_SPLIT_OFFSET_CAPTURE);
62
-        $delim_capture = (bool)($flags & PREG_SPLIT_DELIM_CAPTURE);
60
+        $split_no_empty = (bool) ($flags & PREG_SPLIT_NO_EMPTY);
61
+        $offset_capture = (bool) ($flags & PREG_SPLIT_OFFSET_CAPTURE);
62
+        $delim_capture = (bool) ($flags & PREG_SPLIT_DELIM_CAPTURE);
63 63
 
64 64
         $strlen = strlen($string); // bytes!
65 65
         mb_ereg_search_init($string);
Please login to merge, or discard this patch.