Test Failed
Push — master ( 2bc697...ec556c )
by Maciej
02:06
created
bin/Commands/LanguagesCommand.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
     protected function configure()
33 33
     {
34 34
         $this->setName('languages')
35
-            ->addArgument('by', InputArgument::OPTIONAL, 'Alias type, one of ' . implode(', ', array_map(function ($f) {
35
+            ->addArgument('by', InputArgument::OPTIONAL, 'Alias type, one of '.implode(', ', array_map(function($f) {
36 36
                 return "<info>{$f}</info>";
37 37
             }, $this->types)), 'name')
38 38
             ->addOption('no-group', 'g', InputOption::VALUE_NONE, 'Do not group languages by type')
@@ -52,9 +52,9 @@  discard block
 block discarded – undo
52 52
             $table->setHeaders([ucfirst($input->getArgument('by')), $input->getOption('classes') ? 'Class name' : 'Language']);
53 53
         }
54 54
 
55
-        $table->setRows(array_map(function ($language) {
55
+        $table->setRows(array_map(function($language) {
56 56
             return [
57
-                implode(', ', array_map(function ($f) {
57
+                implode(', ', array_map(function($f) {
58 58
                     return "<comment>{$f}</comment>";
59 59
                 }, $language['aliases'])),
60 60
                 $language['class']
Please login to merge, or discard this patch.
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.
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.
bin/Commands/Dev/GenerateMetadataCommand.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
 {
32 32
     protected function execute(InputInterface $input, OutputInterface $output)
33 33
     {
34
-        if (! class_exists(VarExporter::class)) {
34
+        if (!class_exists(VarExporter::class)) {
35 35
             $output->writeln(
36 36
                 '<error>This command will not work if you installed project with composer install --no-dev'
37 37
             );
@@ -42,8 +42,8 @@  discard block
 block discarded – undo
42 42
             $output->writeln($this->generate($output));
43 43
         } else {
44 44
             file_put_contents(
45
-                __DIR__ . '/../../../Config/metadata.php',
46
-                "<?php\n\nreturn " . $this->generate($output) . ";\n"
45
+                __DIR__.'/../../../Config/metadata.php',
46
+                "<?php\n\nreturn ".$this->generate($output).";\n"
47 47
             );
48 48
         }
49 49
 
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
 
62 62
     protected function generate(OutputInterface $output)
63 63
     {
64
-        $dir = __DIR__ . '/../../../Language' . DIRECTORY_SEPARATOR;
64
+        $dir = __DIR__.'/../../../Language'.DIRECTORY_SEPARATOR;
65 65
         $iterator = new RecursiveIteratorIterator(
66 66
             new RecursiveDirectoryIterator($dir, RecursiveDirectoryIterator::SKIP_DOTS),
67 67
             RecursiveIteratorIterator::LEAVES_ONLY
Please login to merge, or discard this patch.
bin/Commands/Benchmark/RunCommand.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
 
37 37
     protected function execute(InputInterface $input, OutputInterface $output)
38 38
     {
39
-        $dir = __DIR__ . static::DIRECTORY;
39
+        $dir = __DIR__.static::DIRECTORY;
40 40
         $iterator = new RecursiveIteratorIterator(
41 41
             new RecursiveDirectoryIterator(
42 42
                 $dir,
@@ -128,17 +128,17 @@  discard block
 block discarded – undo
128 128
         gc_collect_cycles(); // force garbage collector
129 129
         $memory = $this->getMemory();
130 130
 
131
-        $tokenization = $this->_benchmark(function () use ($language, $source) {
131
+        $tokenization = $this->_benchmark(function() use ($language, $source) {
132 132
             return $language->tokenize($source);
133 133
         });
134 134
         $tokens = $tokenization['result'];
135 135
 
136
-        $parsing = $this->_benchmark(function () use ($language, $tokens) {
136
+        $parsing = $this->_benchmark(function() use ($language, $tokens) {
137 137
             return $language->parse($tokens);
138 138
         });
139 139
         $parsed = $tokenization['result'];
140 140
 
141
-        $formatting = $this->_benchmark(function () use ($formatter, $parsed) {
141
+        $formatting = $this->_benchmark(function() use ($formatter, $parsed) {
142 142
             return $formatter->format($parsed);
143 143
         });
144 144
 
Please login to merge, or discard this patch.
bin/Commands/Benchmark/AnalyzeCommand.php 1 patch
Spacing   +5 added lines, -5 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);
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
 
Please login to merge, or discard this patch.