@@ -59,12 +59,12 @@ |
||
59 | 59 | $this->matchKey = new BooleanMatchKey(); |
60 | 60 | $this->matchValue = new BooleanMatchValue(); |
61 | 61 | |
62 | - $this->listNodeProcessor[UseUse::class] = static function (Node $node): string { |
|
62 | + $this->listNodeProcessor[UseUse::class] = static function(Node $node): string { |
|
63 | 63 | /** @var UseUse $node*/ |
64 | 64 | return $node->name->toCodeString(); |
65 | 65 | }; |
66 | 66 | |
67 | - $this->listNodeProcessor[FullyQualified::class] = static function (Node $node): string { |
|
67 | + $this->listNodeProcessor[FullyQualified::class] = static function(Node $node): string { |
|
68 | 68 | /** @var FullyQualified $node*/ |
69 | 69 | return $node->toCodeString(); |
70 | 70 | }; |
@@ -5,7 +5,7 @@ |
||
5 | 5 | final class ResultCollector |
6 | 6 | { |
7 | 7 | /** @var array<ResultInterface> */ |
8 | - private $listResult ; |
|
8 | + private $listResult; |
|
9 | 9 | |
10 | 10 | public function __construct() |
11 | 11 | { |
@@ -17,7 +17,7 @@ |
||
17 | 17 | |
18 | 18 | $output->writeln('<fg=green>Elapsed time: ' . $elapsed_time . '</>'); |
19 | 19 | |
20 | - return $returnValue ; |
|
20 | + return $returnValue; |
|
21 | 21 | } |
22 | 22 | |
23 | 23 | private function startWatch(): float |