mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-06 03:50:04 +02:00
Update composer
This commit is contained in:
parent
f0314f6e4e
commit
a6ee5ff144
1265 changed files with 321871 additions and 1038 deletions
25
vendor/nikic/php-parser/lib/PhpParser/NodeVisitorAbstract.php
vendored
Normal file
25
vendor/nikic/php-parser/lib/PhpParser/NodeVisitorAbstract.php
vendored
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?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;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue