@@ -102,7 +102,7 @@ |
||
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 | /** |
@@ -62,7 +62,7 @@ discard block |
||
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 |
||
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 |
||
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 | } |