Completed
Pull Request — master (#15)
by
unknown
02:25
created
Command/SmokeTestRunCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
             $testNames = $this->getTestNames();
119 119
             $smokeTests = array_filter(
120 120
                 $smokeTests,
121
-                function ($key) use ($test) {
121
+                function($key) use ($test) {
122 122
                     return $key === $test;
123 123
                 },
124 124
                 ARRAY_FILTER_USE_KEY
@@ -151,7 +151,7 @@  discard block
 block discarded – undo
151 151
             if (!empty($skipTests)) {
152 152
                 $smokeTests = array_filter(
153 153
                     $smokeTests,
154
-                    function ($smokeTestInfo) use ($skipTests, &$skipped) {
154
+                    function($smokeTestInfo) use ($skipTests, &$skipped) {
155 155
                         $key = $smokeTestInfo['id'];
156 156
                         $skipping = in_array($key, $skipTests);
157 157
                         if ($skipping) {
Please login to merge, or discard this patch.
Serializer/ArraySerializationVisitor.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
             $this->root = $data;
44 44
         }
45 45
 
46
-        return (string)$data;
46
+        return (string) $data;
47 47
     }
48 48
 
49 49
     public function visitBoolean($data, array $type, Context $context)
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
             $this->root = $data;
53 53
         }
54 54
 
55
-        return (boolean)$data;
55
+        return (boolean) $data;
56 56
     }
57 57
 
58 58
     public function visitInteger($data, array $type, Context $context)
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
             $this->root = $data;
62 62
         }
63 63
 
64
-        return (int)$data;
64
+        return (int) $data;
65 65
     }
66 66
 
67 67
     public function visitDouble($data, array $type, Context $context)
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
             $this->root = $data;
71 71
         }
72 72
 
73
-        return (float)$data;
73
+        return (float) $data;
74 74
     }
75 75
 
76 76
     /**
Please login to merge, or discard this patch.