Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. NodeVisitor.php

function NodeVisitor::enterNode

Same name in this branch
  1. 11.1.x vendor/nikic/php-parser/lib/PhpParser/NodeVisitor.php \PhpParser\NodeVisitor::enterNode()

* 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) * * NodeTraverser::REMOVE_NODE * => $node is removed from the parent array * * NodeTraverser::DONT_TRAVERSE_CHILDREN * => Children of $node are not traversed. $node stays as-is * * NodeTraverser::DONT_TRAVERSE_CURRENT_AND_CHILDREN * => Further visitors for the current node are skipped, and its children are not * traversed. $node stays as-is. * * NodeTraverser::STOP_TRAVERSAL * => Traversal is aborted. $node stays as-is * * otherwise * => $node is set to the return value * *

Parameters

Node $node Node: * * @return Node|Node[]|NodeTraverser::*|null Replacement node (or special return value)

1 method overrides NodeVisitor::enterNode()
AbstractNodeVisitor::enterNode in vendor/phpstan/phpdoc-parser/src/Ast/AbstractNodeVisitor.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/NodeVisitor.php, line 51

Class

NodeVisitor
Inspired by https://github.com/nikic/PHP-Parser/tree/36a6dcd04e7b0285e8f0868f44bd49…

Namespace

PHPStan\PhpDocParser\Ast

Code

public function enterNode(Node $node);

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal