Passed
Push — master ( 428dea...f32a2d )
by Alec
02:52
created
src/Tools/Reports/Formatters/BenchmarkReportFormatter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
      */
18 18
     public function getString(): string
19 19
     {
20
-        $str = self::BENCHMARK . PHP_EOL;
20
+        $str = self::BENCHMARK.PHP_EOL;
21 21
         /** @var BenchmarkFunction $function */
22 22
         foreach ($this->report->getFunctions() as $name => $function) {
23 23
             $str .= (new BenchmarkFunctionFormatter($function))->getString();
Please login to merge, or discard this patch.
src/Tools/Reports/Formatters/BenchmarkFunctionFormatter.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,10 +26,10 @@
 block discarded – undo
26 26
     public function getString(): string
27 27
     {
28 28
         return
29
-            $this->formatBenchmarkRelative() .
29
+            $this->formatBenchmarkRelative().
30 30
             (empty($exception = $this->formatException()) ?
31 31
                 PHP_EOL :
32
-                static::EXCEPTIONS . PHP_EOL . $exception);
32
+                static::EXCEPTIONS.PHP_EOL.$exception);
33 33
     }
34 34
 
35 35
     /**
Please login to merge, or discard this patch.