Total Complexity | 3 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
28 | final class UseStmtCollector extends NodeVisitorAbstract |
||
29 | { |
||
30 | private NamespaceStmtCollection $namespaceStatements; |
||
31 | private UseStmtCollection $useStatements; |
||
32 | |||
33 | public function __construct(NamespaceStmtCollection $namespaceStatements, UseStmtCollection $useStatements) |
||
37 | 549 | } |
|
38 | |||
39 | public function enterNode(Node $node): Node |
||
50 |