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: | |
24: | public function __toString(): string |
25: | { |
26: | if ($this->key !== null) { |
27: | return sprintf('%s => %s', $this->key, $this->value); |
28: | |
29: | } |
30: | |
31: | return (string) $this->value; |
32: | } |
33: | |
34: | } |
35: | |