🚀 Advanced Web Server Manager
Complete File Manager & Terminal - Standalone Version
By Sid Gifari | Gifari Industries
Current path:
/
/
home2
/
birthday
/
event.krishivgroups.in
/
vendor
/
nikic
/
php-parser
/
lib
/
PhpParser
✏️
Editing: NodeVisitorAbstract.php
<?php declare(strict_types=1); namespace PhpParser; /** * @codeCoverageIgnore */ abstract 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; } }
💾 Save Changes
❌ Cancel