[ Th3_Err0r Bypassed ]




Upload:

Command:

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

namespace PHPStan\PhpDocParser\Ast\PhpDoc;

use PHPStan\PhpDocParser\Ast\NodeAttributes;

class PhpDocTextNode implements PhpDocChildNode
{

	use NodeAttributes;

	public string $text;

	public function __construct(string $text)
	{
		$this->text = $text;
	}

	public function __toString(): string
	{
		return $this->text;
	}

	/**
	 * @param array<string, mixed> $properties
	 */
	public static function __set_state(array $properties): self
	{
		$instance = new self($properties['text']);
		if (isset($properties['attributes'])) {
			foreach ($properties['attributes'] as $key => $value) {
				$instance->setAttribute($key, $value);
			}
		}
		return $instance;
	}

}

Filemanager

Name Type Size Permission Actions
Doctrine Folder 0755
AssertTagMethodValueNode.php File 1.49 KB 0644
AssertTagPropertyValueNode.php File 1.5 KB 0644
AssertTagValueNode.php File 1.37 KB 0644
DeprecatedTagValueNode.php File 815 B 0644
ExtendsTagValueNode.php File 980 B 0644
GenericTagValueNode.php File 751 B 0644
ImplementsTagValueNode.php File 983 B 0644
InvalidTagValueNode.php File 1.57 KB 0644
MethodTagValueNode.php File 2 KB 0644
MethodTagValueParameterNode.php File 1.59 KB 0644
MixinTagValueNode.php File 957 B 0644
ParamClosureThisTagValueNode.php File 1.09 KB 0644
ParamImmediatelyInvokedCallableTagValueNode.php File 989 B 0644
ParamLaterInvokedCallableTagValueNode.php File 983 B 0644
ParamOutTagValueNode.php File 1.08 KB 0644
ParamTagValueNode.php File 1.41 KB 0644
PhpDocChildNode.php File 158 B 0644
PhpDocNode.php File 10.48 KB 0644
PhpDocTagNode.php File 1014 B 0644
PhpDocTagValueNode.php File 161 B 0644
PhpDocTextNode.php File 702 B 0644
PropertyTagValueNode.php File 1.08 KB 0644
PureUnlessCallableIsImpureTagValueNode.php File 984 B 0644
RequireExtendsTagValueNode.php File 966 B 0644
RequireImplementsTagValueNode.php File 969 B 0644
ReturnTagValueNode.php File 958 B 0644
SealedTagValueNode.php File 958 B 0644
SelfOutTagValueNode.php File 961 B 0644
TemplateTagValueNode.php File 1.58 KB 0644
ThrowsTagValueNode.php File 958 B 0644
TypeAliasImportTagValueNode.php File 1.19 KB 0644
TypeAliasTagValueNode.php File 890 B 0644
TypelessParamTagValueNode.php File 1.27 KB 0644
UsesTagValueNode.php File 977 B 0644
VarTagValueNode.php File 1.12 KB 0644