function AbstractNodeVisitor::enterNode
Same name in this branch
- 11.1.x vendor/twig/twig/src/NodeVisitor/AbstractNodeVisitor.php \Twig\NodeVisitor\AbstractNodeVisitor::enterNode()
Overrides NodeVisitor::enterNode
1 method overrides AbstractNodeVisitor::enterNode()
- CloningVisitor::enterNode in vendor/
phpstan/ phpdoc-parser/ src/ Ast/ NodeVisitor/ CloningVisitor.php - * Called when entering a node. * * Return value semantics: * * null * => $node stays as-is * * array (of Nodes) * => The return value is merged into the parent array (at the position of the $node) * *…
File
-
vendor/
phpstan/ phpdoc-parser/ src/ Ast/ AbstractNodeVisitor.php, line 19
Class
- AbstractNodeVisitor
- Inspired by https://github.com/nikic/PHP-Parser/tree/36a6dcd04e7b0285e8f0868f44bd49…
Namespace
PHPStan\PhpDocParser\AstCode
public function enterNode(Node $node) {
return null;
}