Passed
Push — master ( b37e90...1b8d94 )
by Alec
02:56
created
src/Tools/Formatters/BenchmarkReportFormatter.php 1 patch
Spacing   +4 added lines, -5 removed lines patch added patch discarded remove patch
@@ -55,13 +55,13 @@  discard block
 block discarded – undo
55 55
     protected function build(BenchmarkReport $report): string
56 56
     {
57 57
         $this->report = $report;
58
-        $str = static::RESULTS . PHP_EOL;
58
+        $str = static::RESULTS.PHP_EOL;
59 59
         $this->computeVariables();
60 60
         if ($this->benchmarkedAny) {
61
-            $str .= static::BENCHMARK . PHP_EOL;
61
+            $str .= static::BENCHMARK.PHP_EOL;
62 62
         }
63 63
         if ($this->anyExceptions) {
64
-            $exceptions = static::EXCEPTIONS . PHP_EOL;
64
+            $exceptions = static::EXCEPTIONS.PHP_EOL;
65 65
         } else {
66 66
             $exceptions = '';
67 67
         }
@@ -154,8 +154,7 @@  discard block
 block discarded – undo
154 154
                     '%s%s%s',
155 155
                     $aRAE,
156 156
                     $this->benchmarkedMoreThanOne && $this->report->isShowReturns() ?
157
-                        ':' . PHP_EOL . Factory::getBenchmarkFunctionFormatter()->returnToString($this->lastReturn) :
158
-                        $dLM,
157
+                        ':'.PHP_EOL.Factory::getBenchmarkFunctionFormatter()->returnToString($this->lastReturn) : $dLM,
159 158
                     PHP_EOL
160 159
                 );
161 160
         }
Please login to merge, or discard this patch.
src/Tools/Formatters/BenchmarkFunctionFormatter.php 1 patch
Spacing   +4 added lines, -5 removed lines patch added patch discarded remove patch
@@ -37,10 +37,10 @@  discard block
 block discarded – undo
37 37
     {
38 38
         if ($function instanceof BenchmarkFunction) {
39 39
             return
40
-                $this->formatBenchmarkRelative($function) .
40
+                $this->formatBenchmarkRelative($function).
41 41
                 (empty($exception = $this->formatException($function)) ?
42 42
                     PHP_EOL :
43
-                    /*static::EXCEPTIONS .*/ $exception . PHP_EOL);
43
+                    /*static::EXCEPTIONS .*/ $exception.PHP_EOL);
44 44
         }
45 45
         $this->wrongFormattableType(BenchmarkFunction::class, $function);
46 46
         // @codeCoverageIgnoreStart
@@ -135,7 +135,7 @@  discard block
 block discarded – undo
135 135
     {
136 136
         return
137 137
             str_pad(
138
-                $prefix . Pretty::percent($relative),
138
+                $prefix.Pretty::percent($relative),
139 139
                 9,
140 140
                 ' ',
141 141
                 STR_PAD_LEFT
@@ -149,8 +149,7 @@  discard block
 block discarded – undo
149 149
         $str = static::getExporter()->export($executionReturn);
150 150
         return
151 151
             'array' === $type ?
152
-                $str :
153
-                sprintf(
152
+                $str : sprintf(
154 153
                     '%s(%s)',
155 154
                     $type,
156 155
                     $str
Please login to merge, or discard this patch.
src/Tools/Benchmark.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
         $this->silent = $silent ?? $this->silent;
69 69
 
70 70
         $this->iterationNumberGenerator =
71
-            static function (int $iterations, int $i = 1): \Generator {
71
+            static function(int $iterations, int $i = 1): \Generator {
72 72
                 while ($i <= $iterations) {
73 73
                     yield $i++;
74 74
                 }
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
     {
94 94
         if ($iterations < self::MIN_ITERATIONS) {
95 95
             throw new \RuntimeException(
96
-                '[' . __CLASS__ . '] Number of Iterations should be greater than ' . self::MIN_ITERATIONS . '.'
96
+                '['.__CLASS__.'] Number of Iterations should be greater than '.self::MIN_ITERATIONS.'.'
97 97
             );
98 98
         }
99 99
     }
@@ -152,7 +152,7 @@  discard block
 block discarded – undo
152 152
 
153 153
     protected function sectionSeparator(?string $char): string
154 154
     {
155
-        return str_repeat($char ?? static::DEFAULT_SEPARATOR_CHAR, self::DEFAULT_TERMINAL_WIDTH) . PHP_EOL . PHP_EOL;
155
+        return str_repeat($char ?? static::DEFAULT_SEPARATOR_CHAR, self::DEFAULT_TERMINAL_WIDTH).PHP_EOL.PHP_EOL;
156 156
     }
157 157
 
158 158
     /**
@@ -262,7 +262,7 @@  discard block
 block discarded – undo
262 262
                 $this->getTimer()->elapsed(),
263 263
                 PHP_EOL,
264 264
                 (string)$this->memoryUsageReport
265
-            ) .
265
+            ).
266 266
             ($eol ? PHP_EOL : '');
267 267
     }
268 268
 
@@ -330,7 +330,7 @@  discard block
 block discarded – undo
330 330
 
331 331
     protected function showComment(string $comment = ''): void
332 332
     {
333
-        echo $comment . PHP_EOL;
333
+        echo $comment.PHP_EOL;
334 334
     }
335 335
 
336 336
     /**
Please login to merge, or discard this patch.
src/Tools/BenchmarkSymfonyProgressBar.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -31,17 +31,17 @@  discard block
 block discarded – undo
31 31
         $this->progressBar = $progressBar ?? $this->createProgressBar();
32 32
 
33 33
         $progressStart =
34
-            function (): void {
34
+            function(): void {
35 35
                 $this->progressBar->start();
36 36
             };
37 37
 
38 38
         $progressAdvance =
39
-            function (): void {
39
+            function(): void {
40 40
                 $this->progressBar->advance();
41 41
             };
42 42
 
43 43
         $progressFinish =
44
-            function (): void {
44
+            function(): void {
45 45
                 $this->progressBar->finish();
46 46
                 $this->progressBar->clear();
47 47
             };
@@ -110,15 +110,15 @@  discard block
 block discarded – undo
110 110
 
111 111
     protected function showComment(string $comment = ''): void
112 112
     {
113
-        $this->output->writeln('<comment>' . $comment . '</>');
113
+        $this->output->writeln('<comment>'.$comment.'</>');
114 114
     }
115 115
 
116 116
     protected function sectionSeparator(?string $char): string
117 117
     {
118 118
         return
119
-            ' ' . str_repeat(
119
+            ' '.str_repeat(
120 120
                 $char ?? static::DEFAULT_SEPARATOR_CHAR,
121 121
                 $this->terminalWidth - 2
122
-            ) . ' ' . PHP_EOL . PHP_EOL;
122
+            ).' '.PHP_EOL.PHP_EOL;
123 123
     }
124 124
 }
Please login to merge, or discard this patch.
src/Tools/BenchmarkWithSpinner.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -18,17 +18,17 @@
 block discarded – undo
18 18
         if (!$quiet) {
19 19
             $s = $spinner ?? new SnakeSpinner('Benchmarking');
20 20
             $progressStart =
21
-                static function () use ($s): void {
21
+                static function() use ($s): void {
22 22
                     echo $s->begin();
23 23
                 };
24 24
 
25 25
             $progressAdvance =
26
-                static function () use ($s): void {
26
+                static function() use ($s): void {
27 27
                     echo $s->spin();
28 28
                 };
29 29
 
30 30
             $progressFinish =
31
-                static function () use ($s): void {
31
+                static function() use ($s): void {
32 32
                     echo $s->end();
33 33
                 };
34 34
 
Please login to merge, or discard this patch.
src/Tools/BenchmarkSimpleProgressBar.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -13,18 +13,18 @@
 block discarded – undo
13 13
         // @codeCoverageIgnoreStart
14 14
         if (!$quiet) {
15 15
             $progressStart =
16
-                static function () use ($width): void {
17
-                    echo ' [' . str_repeat('░', $width) . ']';
18
-                    echo "\e[" . ($width + 1) . 'D';
16
+                static function() use ($width): void {
17
+                    echo ' ['.str_repeat('░', $width).']';
18
+                    echo "\e[".($width + 1).'D';
19 19
                 };
20 20
             $progressAdvance =
21
-                static function (): void {
21
+                static function(): void {
22 22
                     echo '█';
23 23
                 };
24 24
 
25 25
             $progressFinish =
26
-                static function () use ($width): void {
27
-                    echo "\e[" . ($width + 1) . 'D';
26
+                static function() use ($width): void {
27
+                    echo "\e[".($width + 1).'D';
28 28
                     echo "\e[K";
29 29
                 };
30 30
 
Please login to merge, or discard this patch.