🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-06-15 03:52:26 | PHP 8.1.34
📂
/ (Root)
/
opt
/
cpanel
/
ea-wappspector
/
vendor
/
phpstan
/
phpdoc-parser
/
src
/
Ast
/
PhpDoc
📍 /opt/cpanel/ea-wappspector/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc
🔄 Refresh
✏️
Editing: PhpDocTextNode.php
Read Only
<?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; } }
💾 Save Changes
❌ Cancel