@@ -96,7 +96,7 @@ discard block |
||
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 |
||
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 | /** |