Test Failed
Push — master ( fb2e38...78cf75 )
by Sebastian
02:19
created
src/Common/Functions.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
         if (is_double($value)) {
22 22
             $str = \strval($value);
23 23
             if (strlen($str) === 1) {
24
-                return sprintf("%1\$.1f",$value);
24
+                return sprintf("%1\$.1f", $value);
25 25
             }
26 26
             return $str;
27 27
         }
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
         }
66 66
         if (isStringable($needle)) {
67 67
             foreach ($array as $item) {
68
-                if (strcmp((string)$needle, (string) $item) === 0) {
68
+                if (strcmp((string) $needle, (string) $item) === 0) {
69 69
                     return true;
70 70
                 }
71 71
             }
Please login to merge, or discard this patch.