1: | <?php declare(strict_types = 1); |
2: | |
3: | namespace PHPStan\Reflection; |
4: | |
5: | use PhpParser\Node\Expr; |
6: | |
7: | /** @api */ |
8: | interface ConstantReflection extends ClassMemberReflection, GlobalConstantReflection |
9: | { |
10: | |
11: | /** |
12: | * @deprecated Use getValueExpr() |
13: | * @return mixed |
14: | */ |
15: | public function getValue(); |
16: | |
17: | public function getValueExpr(): Expr; |
18: | |
19: | } |
20: |