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 AssertTagValueNode implements PhpDocTagValueNode
10: {
11:
12: use NodeAttributes;
13:
14: public TypeNode $type;
15:
16: public string $parameter;
17:
18: public bool $isNegated;
19:
20: public bool $isEquality;
21:
22: /** @var string (may be empty) */
23: public string $description;
24:
25: public function __construct(TypeNode $type, string $parameter, bool $isNegated, string $description, bool $isEquality)
26: {
27: $this->type = $type;
28: $this->parameter = $parameter;
29: $this->isNegated = $isNegated;
30: $this->isEquality = $isEquality;
31: $this->description = $description;
32: }
33:
34:
35: public function __toString(): string
36: {
37: $isNegated = $this->isNegated ? '!' : '';
38: $isEquality = $this->isEquality ? '=' : '';
39: return trim("{$isNegated}{$isEquality}{$this->type} {$this->parameter} {$this->description}");
40: }
41:
42: }
43: