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