| 1 | <?php |
||
| 37 | final class NamespaceStmtPrefixer extends NodeVisitorAbstract |
||
| 38 | { |
||
| 39 | private $prefix; |
||
| 40 | private $namespaceStatements; |
||
| 41 | |||
| 42 | public function __construct(string $prefix, NamespaceStmtCollection $namespaceStatements) |
||
| 47 | |||
| 48 | /** |
||
| 49 | * @inheritdoc |
||
| 50 | */ |
||
| 51 | public function enterNode(Node $node): Node |
||
| 58 | |||
| 59 | private function prefixNamespaceStmt(Namespace_ $namespace): Node |
||
| 73 | } |
||
| 74 |