Completed
Push — develop ( eb616e...328010 )
by Alec
03:31
created
src/Tools/Reports/Formatters/SimpleCounterReportFormatter.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
         /** @var CounterValuesInterface $report */
36 36
         return
37 37
             sprintf(
38
-                self::COUNTER . ': %s%s',
38
+                self::COUNTER.': %s%s',
39 39
                 (string)$report->getValue(),
40 40
                 $eol ? PHP_EOL : ''
41 41
             );
@@ -50,10 +50,10 @@  discard block
 block discarded – undo
50 50
     {
51 51
         return
52 52
             sprintf(
53
-                self::COUNTER . '[%s]: ' .
54
-                self::VALUE . ': %s, ' .
55
-                self::STEP . ': %s, ' .
56
-                self::BUMPED . ': %s%s',
53
+                self::COUNTER.'[%s]: '.
54
+                self::VALUE.': %s, '.
55
+                self::STEP.': %s, '.
56
+                self::BUMPED.': %s%s',
57 57
                 $report->getName(),
58 58
                 (string)$report->getValue(),
59 59
                 (string)$report->getStep(),
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
     {
71 71
         return
72 72
             sprintf(
73
-                self::FORWARD . '%s ',
73
+                self::FORWARD.'%s ',
74 74
                 $report->getBumped()
75 75
             );
76 76
     }
Please login to merge, or discard this patch.
src/Tools/BenchmarkSimpleProgressBar.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -18,13 +18,13 @@
 block discarded – undo
18 18
         $this->progressBarWidth = $this->advanceSteps = $progressBarWidth ?? $this->advanceSteps;
19 19
 
20 20
         $progressAdvance =
21
-            function (): void {
21
+            function(): void {
22 22
                 echo '*';
23 23
             };
24 24
 
25 25
         $progressFinish =
26
-            function (): void {
27
-                echo "\e[" . $this->progressBarWidth . 'D';
26
+            function(): void {
27
+                echo "\e[".$this->progressBarWidth.'D';
28 28
                 echo "\e[K";
29 29
             };
30 30
 
Please login to merge, or discard this patch.
src/Tools/BenchmarkSymfonyProgressBar.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -33,17 +33,17 @@
 block discarded – undo
33 33
         $this->progressBar = new ProgressBar($this->output, $this->advanceSteps);
34 34
         $this->progressBar->setBarWidth($this->progressBarWidth);
35 35
         $progressStart =
36
-            function (): void {
36
+            function(): void {
37 37
                 $this->progressBar->start();
38 38
             };
39 39
 
40 40
         $progressAdvance =
41
-            function (): void {
41
+            function(): void {
42 42
                 $this->progressBar->advance();
43 43
             };
44 44
 
45 45
         $progressFinish =
46
-            function (): void {
46
+            function(): void {
47 47
                 $this->progressBar->finish();
48 48
                 $this->progressBar->clear();
49 49
             };
Please login to merge, or discard this patch.
src/Tools/Reports/Formatters/Formatter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
     protected function wrongFormattableType(string $expected, Formattable $formattable): void
21 21
     {
22 22
         throw new \RuntimeException(
23
-            'Instance of [' . $expected . '] expected, [' . typeOf($formattable) . '] given.'
23
+            'Instance of ['.$expected.'] expected, ['.typeOf($formattable).'] given.'
24 24
         );
25 25
     }
26 26
 }
Please login to merge, or discard this patch.
src/Tools/Reports/Factory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -106,7 +106,7 @@
 block discarded – undo
106 106
             static::setBenchmarkFunctionFormatter($formatter);
107 107
             return self::getBenchmarkFunctionFormatter();
108 108
         }
109
-        throw new \RuntimeException('Formatter [' . typeOf($formatter) . '] is not accepted.');
109
+        throw new \RuntimeException('Formatter ['.typeOf($formatter).'] is not accepted.');
110 110
     }
111 111
 
112 112
     /**
Please login to merge, or discard this patch.
src/Tools/Reports/Formatters/BenchmarkFunctionFormatter.php 1 patch
Spacing   +3 added lines, -4 removed lines patch added patch discarded remove patch
@@ -48,10 +48,10 @@  discard block
 block discarded – undo
48 48
     {
49 49
         if ($function instanceof BenchmarkFunction) {
50 50
             return
51
-                $this->formatBenchmarkRelative($function) .
51
+                $this->formatBenchmarkRelative($function).
52 52
                 (empty($exception = $this->formatException($function)) ?
53 53
                     PHP_EOL :
54
-                    static::EXCEPTIONS . PHP_EOL . $exception);
54
+                    static::EXCEPTIONS.PHP_EOL.$exception);
55 55
         }
56 56
         $this->wrongFormattableType(BenchmarkFunction::class, $function);
57 57
         // @codeCoverageIgnoreStart
@@ -157,8 +157,7 @@  discard block
 block discarded – undo
157 157
         $str = static::getExporter()->export($executionReturn);
158 158
         return
159 159
             'array' === $type ?
160
-                $str :
161
-                sprintf(
160
+                $str : sprintf(
162 161
                     '%s(%s)',
163 162
                     $type,
164 163
                     $str
Please login to merge, or discard this patch.