mirror of
https://github.com/nikic/PHP-Parser.git
synced 2025-01-17 07:08:14 +01:00
Mark NodeVisitorAbstract as abstract class
It doesn't actually have any abstract methods, but doesn't do anything by itself and is intended for extension only. Fixes #865.
This commit is contained in:
parent
1f504d2c7d
commit
34d8681488
@ -5,7 +5,7 @@ namespace PhpParser;
|
||||
/**
|
||||
* @codeCoverageIgnore
|
||||
*/
|
||||
class NodeVisitorAbstract implements NodeVisitor
|
||||
abstract class NodeVisitorAbstract implements NodeVisitor
|
||||
{
|
||||
public function beforeTraverse(array $nodes) {
|
||||
return null;
|
||||
|
Loading…
x
Reference in New Issue
Block a user