Passed
Push — master ( 610c8e...e2d4f6 )
by Alec
03:29
created
src/Tools/Reports/Formatters/BenchmarkReportFormatter.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
     public function getString(): string
21 21
     {
22 22
         $profilerReport = (string)$this->report->getProfiler()->getReport();
23
-        $r = 'Benchmark:' . PHP_EOL;
23
+        $r = 'Benchmark:'.PHP_EOL;
24 24
         $withException = '';
25 25
         /** @var BenchmarkFunction $function */
26 26
         foreach ($this->report->getFunctions() as $name => $function) {
@@ -68,9 +68,9 @@  discard block
 block discarded – undo
68 68
             }
69 69
         }
70 70
         return
71
-            $r . PHP_EOL .
72
-            (empty($withException) ? '' : 'Exceptions:' . PHP_EOL . $withException) .
73
-            $this->report->getMemoryUsageReport() . PHP_EOL .
71
+            $r.PHP_EOL.
72
+            (empty($withException) ? '' : 'Exceptions:'.PHP_EOL.$withException).
73
+            $this->report->getMemoryUsageReport().PHP_EOL.
74 74
             $profilerReport;
75 75
     }
76 76
 
Please login to merge, or discard this patch.