mirror of
https://github.com/danog/PHP-Parser.git
synced 2024-11-27 04:14:44 +01:00
12 lines
334 B
PHP
12 lines
334 B
PHP
<?php
|
|
|
|
/**
|
|
* @codeCoverageIgnore
|
|
*/
|
|
class PHPParser_NodeVisitorAbstract implements PHPParser_NodeVisitor
|
|
{
|
|
public function beforeTraverse(array $nodes) { }
|
|
public function enterNode(PHPParser_Node $node) { }
|
|
public function leaveNode(PHPParser_Node $node) { }
|
|
public function afterTraverse(array $nodes) { }
|
|
} |