1: <?php declare(strict_types = 1);
2:
3: namespace PHPStan\PhpDocParser\Ast\ConstExpr;
4:
5: use PHPStan\PhpDocParser\Ast\NodeAttributes;
6:
7: class ConstExprStringNode implements ConstExprNode
8: {
9:
10: use NodeAttributes;
11:
12: /** @var string */
13: public $value;
14:
15: public function __construct(string $value)
16: {
17: $this->value = $value;
18: }
19:
20:
21: public function __toString(): string
22: {
23: return $this->value;
24: }
25:
26: }
27: