Test Failed
Branch master (2bc697)
by Kacper
02:27
created
bin/Commands/FormattersCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
             $table->setHeaders(['Name', 'Formatter']);
45 45
         }
46 46
 
47
-        $table->setRows(array_map(function ($alias, $class) {
47
+        $table->setRows(array_map(function($alias, $class) {
48 48
             return [
49 49
                 "<comment>{$alias}</comment>",
50 50
                 get_class($class)
Please login to merge, or discard this patch.
bin/Commands/Benchmark/AnalyzeCommand.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
             $this->separator($file, $table);
54 54
 
55 55
             foreach ($data['times'] as $set => $times) {
56
-                $result = array_map(function ($time) use ($data, $input) {
56
+                $result = array_map(function($time) use ($data, $input) {
57 57
                     return $input->getOption('relative') ? $data['size'] / $time : $time * 1000;
58 58
                 }, $times);
59 59
 
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
             }
68 68
 
69 69
             foreach ($data['memory'] as $set => $memory) {
70
-                $result = array_map(function ($memory) use ($data, $input) {
70
+                $result = array_map(function($memory) use ($data, $input) {
71 71
                     $bytes = $input->getOption('relative') ? $memory / $data['size'] : $memory;
72 72
                     return $this->formatBytes($bytes, (bool)$input->getOption('relative'));
73 73
                 }, $memory);
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
             $table->render();
81 81
         }
82 82
 
83
-        $summary = array_filter($summary, function ($key) use ($input) {
83
+        $summary = array_filter($summary, function($key) use ($input) {
84 84
             return fnmatch($input->getOption('summary') ?: '*', $key);
85 85
         }, ARRAY_FILTER_USE_KEY);
86 86
 
@@ -134,8 +134,8 @@  discard block
 block discarded – undo
134 134
     {
135 135
         $mean = array_sum($result) / count($result);
136 136
 
137
-        return sqrt(array_sum(array_map(function ($result) use ($mean) {
138
-            return pow((float) $result - $mean, 2);
137
+        return sqrt(array_sum(array_map(function($result) use ($mean) {
138
+            return pow((float)$result - $mean, 2);
139 139
         }, $result)) / count($result));
140 140
     }
141 141
 
@@ -149,7 +149,7 @@  discard block
 block discarded – undo
149 149
 
150 150
         $bytes /= (1 << (10 * $pow));
151 151
 
152
-        return $this->format($bytes);//.$units[$pow].($relative ? '/byte' : '');
152
+        return $this->format($bytes); //.$units[$pow].($relative ? '/byte' : '');
153 153
     }
154 154
 
155 155
     protected function configure()
Please login to merge, or discard this patch.
Matcher/CommentMatcher.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
     public function __construct(array $singleLine = null, array $multiLine = null)
33 33
     {
34 34
         $this->singleLine = $singleLine ?: [];
35
-        $this->multiLine  = $multiLine  ?: [];
35
+        $this->multiLine  = $multiLine ?: [];
36 36
     }
37 37
 
38 38
 
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
         $all = [];
51 51
 
52 52
         foreach ($this->multiLine as $name => $comment) {
53
-            $comment = array_map(function ($e) {
53
+            $comment = array_map(function($e) {
54 54
                 return preg_quote($e, '/');
55 55
             }, $comment);
56 56
 
Please login to merge, or discard this patch.