1 | <?php |
||
29 | final class UseStmtCollector extends NodeVisitorAbstract |
||
30 | { |
||
31 | private $namespaceStatements; |
||
32 | private $useStatements; |
||
33 | |||
34 | 371 | public function __construct(NamespaceStmtCollection $namespaceStatements, UseStmtCollection $useStatements) |
|
39 | |||
40 | /** |
||
41 | * @inheritdoc |
||
42 | */ |
||
43 | 370 | public function enterNode(Node $node): Node |
|
53 | } |
||
54 |