Passed
Push — master ( 13c7b8...1472b6 )
by Alec
07:12 queued 03:14
created
src/Tools/Reports/Formatters/BenchmarkFunctionFormatter.php 1 patch
Spacing   +3 added lines, -4 removed lines patch added patch discarded remove patch
@@ -39,10 +39,10 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
Please login to merge, or discard this patch.
src/Tools/Reports/Formatters/BenchmarkReportFormatter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
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) {
Please login to merge, or discard this patch.