1: <?php declare(strict_types = 1);
2:
3: namespace PHPStan\PhpDocParser\Ast\PhpDoc;
4:
5: use PHPStan\PhpDocParser\Ast\NodeAttributes;
6: use PHPStan\PhpDocParser\Ast\Type\TypeNode;
7: use function trim;
8:
9: class PropertyTagValueNode implements PhpDocTagValueNode
10: {
11:
12: use NodeAttributes;
13:
14: public TypeNode $type;
15:
16: public string $propertyName;
17:
18: /** @var string (may be empty) */
19: public string $description;
20:
21: public function __construct(TypeNode $type, string $propertyName, string $description)
22: {
23: $this->type = $type;
24: $this->propertyName = $propertyName;
25: $this->description = $description;
26: }
27:
28:
29: public function __toString(): string
30: {
31: return trim("{$this->type} {$this->propertyName} {$this->description}");
32: }
33:
34: }
35: