Completed
Push — master ( 654184...409071 )
by Basil
03:35
created
core/helpers/StringHelper.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
             return true;
97 97
         }
98 98
         
99
-        return ($value == (string)(float) $value);
99
+        return ($value == (string) (float) $value);
100 100
     }
101 101
     
102 102
     /**
@@ -208,9 +208,9 @@  discard block
 block discarded – undo
208 208
 
209 209
         // string before
210 210
         $before = (count($left) > $length) ? $affix.implode("", array_slice($left, -$length)) : implode("", $left);
211
-        $after = (count($right) > $length) ? implode("", array_slice($right, 0, $length)) . $affix : implode("", $right);
211
+        $after = (count($right) > $length) ? implode("", array_slice($right, 0, $length)).$affix : implode("", $right);
212 212
 
213
-        return $before . $word . $after;
213
+        return $before.$word.$after;
214 214
     }
215 215
 
216 216
     /**
Please login to merge, or discard this patch.