function NodeVisitor::leaveNode
Same name in this branch
- 11.1.x vendor/nikic/php-parser/lib/PhpParser/NodeVisitor.php \PhpParser\NodeVisitor::leaveNode()
* Called when leaving a node. * * Return value semantics: * * null * => $node stays as-is * * NodeTraverser::REMOVE_NODE * => $node is removed from the parent array * * NodeTraverser::STOP_TRAVERSAL * => Traversal is aborted. $node stays as-is * * array (of Nodes) * => The return value is merged into the parent array (at the position of the $node) * * otherwise * => $node is set to the return value * *
Parameters
Node $node Node: * * @return Node|Node[]|NodeTraverser::REMOVE_NODE|NodeTraverser::STOP_TRAVERSAL|null Replacement node (or special return value)
1 method overrides NodeVisitor::leaveNode()
- AbstractNodeVisitor::leaveNode in vendor/
phpstan/ phpdoc-parser/ src/ Ast/ AbstractNodeVisitor.php - * Called when leaving a node. * * Return value semantics: * * null * => $node stays as-is * * NodeTraverser::REMOVE_NODE * => $node is removed from the parent array * * NodeTraverser::STOP_TRAVERSAL * …
File
-
vendor/
phpstan/ phpdoc-parser/ src/ Ast/ NodeVisitor.php, line 72
Class
Namespace
PHPStan\PhpDocParser\AstCode
public function leaveNode(Node $node);