1: <?php declare(strict_types = 1);
2:
3: namespace PHPStan\PhpDocParser\Ast\ConstExpr;
4:
5: use PHPStan\PhpDocParser\Ast\NodeAttributes;
6: use function sprintf;
7:
8: class ConstExprArrayItemNode implements ConstExprNode
9: {
10:
11: use NodeAttributes;
12:
13: public ?ConstExprNode $key = null;
14:
15: public ConstExprNode $value;
16:
17: public function __construct(?ConstExprNode $key, ConstExprNode $value)
18: {
19: $this->key = $key;
20: $this->value = $value;
21: }
22:
23: public function __toString(): string
24: {
25: if ($this->key !== null) {
26: return sprintf('%s => %s', $this->key, $this->value);
27:
28: }
29:
30: return (string) $this->value;
31: }
32:
33: }
34: