@@ -44,7 +44,7 @@ |
||
| 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) |
@@ -32,7 +32,7 @@ discard block |
||
| 32 | 32 | |
| 33 | 33 | protected function execute(InputInterface $input, OutputInterface $output) |
| 34 | 34 | { |
| 35 | - $dir = __DIR__ . static::DIRECTORY; |
|
| 35 | + $dir = __DIR__.static::DIRECTORY; |
|
| 36 | 36 | $iterator = new \RecursiveIteratorIterator( |
| 37 | 37 | new \RecursiveDirectoryIterator( |
| 38 | 38 | $dir, |
@@ -124,17 +124,17 @@ discard block |
||
| 124 | 124 | gc_collect_cycles(); // force garbage collector |
| 125 | 125 | $memory = $this->getMemory(); |
| 126 | 126 | |
| 127 | - $tokenization = $this->_benchmark(function () use ($language, $source) { |
|
| 127 | + $tokenization = $this->_benchmark(function() use ($language, $source) { |
|
| 128 | 128 | return $language->tokenize($source); |
| 129 | 129 | }); |
| 130 | 130 | $tokens = $tokenization['result']; |
| 131 | 131 | |
| 132 | - $parsing = $this->_benchmark(function () use ($language, $tokens) { |
|
| 132 | + $parsing = $this->_benchmark(function() use ($language, $tokens) { |
|
| 133 | 133 | return $language->parse($tokens); |
| 134 | 134 | }); |
| 135 | 135 | $parsed = $tokenization['result']; |
| 136 | 136 | |
| 137 | - $formatting = $this->_benchmark(function () use ($formatter, $parsed) { |
|
| 137 | + $formatting = $this->_benchmark(function() use ($formatter, $parsed) { |
|
| 138 | 138 | return $formatter->format($parsed); |
| 139 | 139 | }); |
| 140 | 140 | |
@@ -53,7 +53,7 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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() |
@@ -32,7 +32,7 @@ discard block |
||
| 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 |
||
| 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 | |