Completed
Push — 1.x ( 2692eb...201d44 )
by Dorian
12s
created
src/Parser/FloatParser.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
         if ($rawValue === null || $rawValue === '') {
20 20
             return null;
21 21
         }
22
-        if(!is_float($rawValue) && !is_int($rawValue) && !is_numeric($rawValue)) {
22
+        if (!is_float($rawValue) && !is_int($rawValue) && !is_numeric($rawValue)) {
23 23
             $this->throw();
24 24
         }
25 25
         return floatval($rawValue);
Please login to merge, or discard this patch.