BossBey File Manager
PHP:
7.4.33
OS:
Linux
User:
root
Root
/
opt
/
cpanel
/
ea-wappspector
/
vendor
/
phpstan
/
phpdoc-parser
/
src
/
Ast
/
PhpDoc
📤 Upload
📝 New File
📁 New Folder
Close
Editing: GenericTagValueNode.php
<?php declare(strict_types = 1); namespace PHPStan\PhpDocParser\Ast\PhpDoc; use PHPStan\PhpDocParser\Ast\NodeAttributes; class GenericTagValueNode implements PhpDocTagValueNode { use NodeAttributes; /** @var string (may be empty) */ public string $value; public function __construct(string $value) { $this->value = $value; } public function __toString(): string { return $this->value; } }
Save
Cancel