Files
iTop/lib/nikic/php-parser/lib/PhpParser/NodeVisitorAbstract.php
Pierre Goiffon 9bbee0d603 ⬆️ N°3867 Upgrade php-parser from 3.1.5 to latest version 4.12.0
The 3.1.5 version wasn't maintained anymore and was compatible with PHP 7.2 maximum
2021-08-10 15:45:02 +02:00

26 lines
438 B
PHP

<?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;
}
}