Passed
Push — develop ( c56c81...f741b1 )
by Alec
03:32
created
src/Tools/Internal/BenchmarkFunction.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -102,7 +102,7 @@
 block discarded – undo
102 102
     public function enumeratedName(): string
103 103
     {
104 104
         return
105
-            brackets((string)$this->index, BRACKETS_ANGLE) . ' ' . $this->name;
105
+            brackets((string)$this->index, BRACKETS_ANGLE).' '.$this->name;
106 106
     }
107 107
 
108 108
     /**
Please login to merge, or discard this patch.
src/Tools/Benchmark.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
         $this->verbose = false;
63 63
         $this->rewindable =
64 64
             new Rewindable(
65
-                function (int $iterations, int $i = 1): \Generator {
65
+                function(int $iterations, int $i = 1): \Generator {
66 66
                     while ($i <= $iterations) {
67 67
                         yield $i++;
68 68
                     }
@@ -93,8 +93,8 @@  discard block
 block discarded – undo
93 93
 
94 94
         if ($this->verbose) {
95 95
             $this->erase();
96
-            echo ' 100%' . PHP_EOL;
97
-            echo '  λ   Done!' . PHP_EOL;
96
+            echo ' 100%'.PHP_EOL;
97
+            echo '  λ   Done!'.PHP_EOL;
98 98
         }
99 99
 
100 100
         if ($printReport) {
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
         try {
138 138
             $result = $function(...$args);
139 139
         } catch (\Throwable $e) {
140
-            $this->exceptionMessages[$f->getIndexedName()] = $result = brackets(typeOf($e)) . ': ' . $e->getMessage();
140
+            $this->exceptionMessages[$f->getIndexedName()] = $result = brackets(typeOf($e)).': '.$e->getMessage();
141 141
             $this->exceptions[$f->getIndexedName()] = $e;
142 142
             $f->setException($e);
143 143
         }
Please login to merge, or discard this patch.