1: | <?php declare(strict_types = 1); |
2: | |
3: | namespace PHPStan\Reflection; |
4: | |
5: | use PHPStan\TrinaryLogic; |
6: | use PHPStan\Type\Type; |
7: | |
8: | /** @api */ |
9: | interface ConstantReflection |
10: | { |
11: | |
12: | public function getName(): string; |
13: | |
14: | public function getValueType(): Type; |
15: | |
16: | public function isDeprecated(): TrinaryLogic; |
17: | |
18: | public function getDeprecatedDescription(): ?string; |
19: | |
20: | public function isInternal(): TrinaryLogic; |
21: | |
22: | public function getFileName(): ?string; |
23: | |
24: | } |
25: |