| 1 | <?php |
||
| 27 | final class UseStmtCollector extends NodeVisitorAbstract |
||
| 28 | { |
||
| 29 | private $namespaceStatements; |
||
| 30 | private $useStatements; |
||
| 31 | |||
| 32 | public function __construct(NamespaceStmtCollection $namespaceStatements, UseStmtCollection $useStatements) |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @inheritdoc |
||
| 40 | */ |
||
| 41 | public function enterNode(Node $node): Node |
||
| 51 | } |
||
| 52 |