Passed
Push — master ( 34c1e4...428dea )
by Alec
03:16
created
src/Tools/Reports/Formatters/BenchmarkFunctionFormatter.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,10 +25,10 @@
 block discarded – undo
25 25
     public function getString(): string
26 26
     {
27 27
         return
28
-            $this->formatBenchmarkRelative() .
28
+            $this->formatBenchmarkRelative().
29 29
             (empty($exception = $this->formatException()) ?
30 30
                 PHP_EOL :
31
-                'Exceptions:' . PHP_EOL . $exception);
31
+                'Exceptions:'.PHP_EOL.$exception);
32 32
     }
33 33
 
34 34
     /**
Please login to merge, or discard this patch.
src/Tools/Reports/Formatters/BenchmarkReportFormatter.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -17,14 +17,14 @@
 block discarded – undo
17 17
      */
18 18
     public function getString(): string
19 19
     {
20
-        $r = 'Benchmark:' . PHP_EOL;
20
+        $r = 'Benchmark:'.PHP_EOL;
21 21
         /** @var BenchmarkFunction $function */
22 22
         foreach ($this->report->getFunctions() as $name => $function) {
23 23
             $r .= (new  BenchmarkFunctionFormatter($function))->getString();
24 24
         }
25 25
         return
26
-            $r . PHP_EOL .
27
-            $this->report->getMemoryUsageReport() . PHP_EOL .
26
+            $r.PHP_EOL.
27
+            $this->report->getMemoryUsageReport().PHP_EOL.
28 28
             $this->report->getProfiler()->getReport();
29 29
     }
30 30
 }
Please login to merge, or discard this patch.