@@ -48,10 +48,10 @@ discard block |
||
| 48 | 48 | { |
| 49 | 49 | if ($function instanceof BenchmarkFunction) { |
| 50 | 50 | return |
| 51 | - $this->formatBenchmarkRelative($function) . |
|
| 51 | + $this->formatBenchmarkRelative($function). |
|
| 52 | 52 | (empty($exception = $this->formatException($function)) ? |
| 53 | 53 | PHP_EOL : |
| 54 | - static::EXCEPTIONS . PHP_EOL . $exception); |
|
| 54 | + static::EXCEPTIONS.PHP_EOL.$exception); |
|
| 55 | 55 | } |
| 56 | 56 | $this->wrongFormattableType(BenchmarkFunction::class, $function); |
| 57 | 57 | // @codeCoverageIgnoreStart |
@@ -157,8 +157,7 @@ discard block |
||
| 157 | 157 | $str = static::getExporter()->export($executionReturn); |
| 158 | 158 | return |
| 159 | 159 | 'array' === $type ? |
| 160 | - $str : |
|
| 161 | - sprintf( |
|
| 160 | + $str : sprintf( |
|
| 162 | 161 | '%s(%s)', |
| 163 | 162 | $type, |
| 164 | 163 | $str |