X7ROOT File Manager
Current Path:
/opt/cpanel/ea-wappspector/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc
opt
/
cpanel
/
ea-wappspector
/
vendor
/
phpstan
/
phpdoc-parser
/
src
/
Ast
/
PhpDoc
/
??
..
??
AssertTagMethodValueNode.php
(1.49 KB)
??
AssertTagPropertyValueNode.php
(1.5 KB)
??
AssertTagValueNode.php
(1.37 KB)
??
DeprecatedTagValueNode.php
(815 B)
??
Doctrine
??
ExtendsTagValueNode.php
(980 B)
??
GenericTagValueNode.php
(751 B)
??
ImplementsTagValueNode.php
(983 B)
??
InvalidTagValueNode.php
(1.57 KB)
??
MethodTagValueNode.php
(2 KB)
??
MethodTagValueParameterNode.php
(1.59 KB)
??
MixinTagValueNode.php
(957 B)
??
ParamClosureThisTagValueNode.php
(1.09 KB)
??
ParamImmediatelyInvokedCallableTagValueNode.php
(989 B)
??
ParamLaterInvokedCallableTagValueNode.php
(983 B)
??
ParamOutTagValueNode.php
(1.08 KB)
??
ParamTagValueNode.php
(1.41 KB)
??
PhpDocChildNode.php
(158 B)
??
PhpDocNode.php
(10.48 KB)
??
PhpDocTagNode.php
(1014 B)
??
PhpDocTagValueNode.php
(161 B)
??
PhpDocTextNode.php
(702 B)
??
PropertyTagValueNode.php
(1.08 KB)
??
PureUnlessCallableIsImpureTagValueNode.php
(984 B)
??
RequireExtendsTagValueNode.php
(966 B)
??
RequireImplementsTagValueNode.php
(969 B)
??
ReturnTagValueNode.php
(958 B)
??
SealedTagValueNode.php
(958 B)
??
SelfOutTagValueNode.php
(961 B)
??
TemplateTagValueNode.php
(1.58 KB)
??
ThrowsTagValueNode.php
(958 B)
??
TypeAliasImportTagValueNode.php
(1.19 KB)
??
TypeAliasTagValueNode.php
(890 B)
??
TypelessParamTagValueNode.php
(1.27 KB)
??
UsesTagValueNode.php
(977 B)
??
VarTagValueNode.php
(1.12 KB)
Editing: PhpDocTextNode.php
<?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; } }
Upload File
Create Folder