1: | <?php declare(strict_types = 1); |
2: | |
3: | namespace PHPStan\Node; |
4: | |
5: | use PhpParser\Node\ArrayItem; |
6: | use PHPStan\Analyser\Scope; |
7: | |
8: | /** |
9: | * @api |
10: | */ |
11: | final class LiteralArrayItem |
12: | { |
13: | |
14: | public function __construct(private Scope $scope, private ?ArrayItem $arrayItem) |
15: | { |
16: | } |
17: | |
18: | public function getScope(): Scope |
19: | { |
20: | return $this->scope; |
21: | } |
22: | |
23: | public function getArrayItem(): ?ArrayItem |
24: | { |
25: | return $this->arrayItem; |
26: | } |
27: | |
28: | } |
29: |