Total Complexity | 5 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
10 | final class ImportDetection extends NodeVisitorAbstract |
||
11 | { |
||
12 | /** @var string[] */ |
||
13 | private $imports = []; |
||
14 | |||
15 | public function enterNode(Node $node) |
||
22 | } |
||
23 | } |
||
24 | |||
25 | public function imports(): array |
||
26 | { |
||
27 | return $this->imports; |
||
28 | } |
||
29 | |||
30 | private function tag(UseUse $use): string |
||
33 | } |
||
34 | } |
||
35 |