upgrade to laravel 7 and set branch to v2
This commit is contained in:
@@ -1,25 +0,0 @@
|
||||
<?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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user