@@ -39,10 +39,10 @@ discard block |
||
| 39 | 39 | public function getString(): string |
| 40 | 40 | { |
| 41 | 41 | return |
| 42 | - $this->formatBenchmarkRelative() . |
|
| 42 | + $this->formatBenchmarkRelative(). |
|
| 43 | 43 | (empty($exception = $this->formatException()) ? |
| 44 | 44 | PHP_EOL : |
| 45 | - static::EXCEPTIONS . PHP_EOL . $exception); |
|
| 45 | + static::EXCEPTIONS.PHP_EOL.$exception); |
|
| 46 | 46 | } |
| 47 | 47 | |
| 48 | 48 | /** |
@@ -137,8 +137,7 @@ discard block |
||
| 137 | 137 | $str = var_export($executionReturn, true); |
| 138 | 138 | return |
| 139 | 139 | $type === 'array' ? |
| 140 | - $str : |
|
| 141 | - sprintf( |
|
| 140 | + $str : sprintf( |
|
| 142 | 141 | '%s(%s)', |
| 143 | 142 | $type, |
| 144 | 143 | $str |
@@ -19,7 +19,7 @@ |
||
| 19 | 19 | */ |
| 20 | 20 | public function getString(): string |
| 21 | 21 | { |
| 22 | - $str = self::BENCHMARK . PHP_EOL; |
|
| 22 | + $str = self::BENCHMARK.PHP_EOL; |
|
| 23 | 23 | $equalReturns = $this->checkReturns(); |
| 24 | 24 | /** @var BenchmarkFunction $function */ |
| 25 | 25 | foreach ($this->report->getFunctions() as $name => $function) { |