@@ -20,7 +20,7 @@ discard block |
||
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 |
||
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 |