1: <?php declare(strict_types = 1);
2:
3: namespace PHPStan\Type;
4:
5: /** @api */
6: interface ConstantScalarType extends ConstantType
7: {
8:
9: /**
10: * @return int|float|string|bool|null
11: */
12: public function getValue();
13:
14: }
15: