Passed
Push — develop ( 84aa32...d180ee )
by Alec
02:42
created
src/Tools/BenchmarkSimplePB.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/Reports/Formatters/BenchmarkReportFormatter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
      */
18 18
     public function getString(): string
19 19
     {
20
-        $str = self::BENCHMARK . PHP_EOL;
20
+        $str = self::BENCHMARK.PHP_EOL;
21 21
         /** @var BenchmarkFunction $function */
22 22
         foreach ($this->report->getFunctions() as $name => $function) {
23 23
             $str .= (new BenchmarkFunctionFormatter($function))->getString();
Please login to merge, or discard this patch.
src/Tools/Reports/Formatters/BenchmarkFunctionFormatter.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,10 +26,10 @@
 block discarded – undo
26 26
     public function getString(): string
27 27
     {
28 28
         return
29
-            $this->formatBenchmarkRelative() .
29
+            $this->formatBenchmarkRelative().
30 30
             (empty($exception = $this->formatException()) ?
31 31
                 PHP_EOL :
32
-                static::EXCEPTIONS . PHP_EOL . $exception);
32
+                static::EXCEPTIONS.PHP_EOL.$exception);
33 33
     }
34 34
 
35 35
     /**
Please login to merge, or discard this patch.