📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-07-03 12:44:40
📂
/ (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: PropertyTagValueNode.php
Writable
<?php declare(strict_types = 1); namespace PHPStan\PhpDocParser\Ast\PhpDoc; use PHPStan\PhpDocParser\Ast\NodeAttributes; use PHPStan\PhpDocParser\Ast\Type\TypeNode; use function trim; class PropertyTagValueNode implements PhpDocTagValueNode { use NodeAttributes; public TypeNode $type; public string $propertyName; /** @var string (may be empty) */ public string $description; public function __construct(TypeNode $type, string $propertyName, string $description) { $this->type = $type; $this->propertyName = $propertyName; $this->description = $description; } public function __toString(): string { return trim("{$this->type} {$this->propertyName} {$this->description}"); } }
💾 Save Changes
❌ Cancel