| 1 | <?php |
||
| 21 | final class ContainerAwareTrans extends BasePHPVisitor implements NodeVisitor |
||
| 22 | { |
||
| 23 | /** |
||
| 24 | * {@inheritdoc} |
||
| 25 | */ |
||
| 26 | 4 | public function beforeTraverse(array $nodes): ?Node |
|
| 30 | |||
| 31 | /** |
||
| 32 | * {@inheritdoc} |
||
| 33 | */ |
||
| 34 | 4 | public function enterNode(Node $node): ?Node |
|
| 58 | |||
| 59 | /** |
||
| 60 | * {@inheritdoc} |
||
| 61 | */ |
||
| 62 | 4 | public function leaveNode(Node $node): ?Node |
|
| 66 | |||
| 67 | /** |
||
| 68 | * {@inheritdoc} |
||
| 69 | */ |
||
| 70 | 4 | public function afterTraverse(array $nodes): ?Node |
|
| 74 | } |
||
| 75 |