Passed
Push — master ( 12329e...4e3380 )
by Alec
02:51
created
src/Tools/Reports/Formatters/BenchmarkFunctionFormatter.php 1 patch
Spacing   +4 added lines, -5 removed lines patch added patch discarded remove patch
@@ -39,10 +39,10 @@  discard block
 block discarded – undo
39 39
     public function process(): 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
     /**
@@ -136,12 +136,11 @@  discard block
 block discarded – undo
136 136
         try {
137 137
             $str = var_export($executionReturn, true);
138 138
         } catch (\Exception $e) {
139
-            $str = '[' . typeOf($e) . '] ' . $e->getMessage();
139
+            $str = '['.typeOf($e).'] '.$e->getMessage();
140 140
         }
141 141
         return
142 142
             $type === 'array' ?
143
-                $str :
144
-                sprintf(
143
+                $str : sprintf(
145 144
                     '%s(%s)',
146 145
                     $type,
147 146
                     $str
Please login to merge, or discard this patch.