📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-07-03 10:22:17
📂
/ (Root)
/
home
/
orkouolp
/
web
/
testing.orkobd
/
laravel
/
vendor
/
phpstan
/
phpdoc-parser
/
src
/
Ast
/
PhpDoc
📍 /home/orkouolp/web/testing.orkobd/laravel/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc
🔄 Refresh
✏️
Editing: ImplementsTagValueNode.php
Writable
<?php declare(strict_types = 1); namespace PHPStan\PhpDocParser\Ast\PhpDoc; use PHPStan\PhpDocParser\Ast\NodeAttributes; use PHPStan\PhpDocParser\Ast\Type\GenericTypeNode; use function trim; class ImplementsTagValueNode implements PhpDocTagValueNode { use NodeAttributes; public GenericTypeNode $type; /** @var string (may be empty) */ public string $description; public function __construct(GenericTypeNode $type, string $description) { $this->type = $type; $this->description = $description; } public function __toString(): string { return trim("{$this->type} {$this->description}"); } }
💾 Save Changes
❌ Cancel