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: | |
14: | public $key; |
15: | |
16: | |
17: | public $value; |
18: | |
19: | public function __construct(?ConstExprNode $key, ConstExprNode $value) |
20: | { |
21: | $this->key = $key; |
22: | $this->value = $value; |
23: | } |
24: | |
25: | |
26: | public function __toString(): string |
27: | { |
28: | if ($this->key !== null) { |
29: | return sprintf('%s => %s', $this->key, $this->value); |
30: | |
31: | } |
32: | |
33: | return (string) $this->value; |
34: | } |
35: | |
36: | } |
37: | |