File "NodeVisitorAbstract.php"
Full Path: /home/fundopuh/trader.fxex.org/vendor/nikic/php-parser/lib/PhpParser/NodeVisitorAbstract.php
File size: 438 bytes
MIME-type: text/x-php
Charset: utf-8
<?php declare(strict_types=1);
namespace PhpParser;
/**
* @codeCoverageIgnore
*/
class NodeVisitorAbstract implements NodeVisitor
{
public function beforeTraverse(array $nodes) {
return null;
}
public function enterNode(Node $node) {
return null;
}
public function leaveNode(Node $node) {
return null;
}
public function afterTraverse(array $nodes) {
return null;
}
}