1: <?php declare(strict_types = 1);
2:
3: namespace PHPStan\Rules\Constants;
4:
5: use PHPStan\Reflection\ConstantReflection;
6:
7: /** @api */
8: interface AlwaysUsedClassConstantsExtension
9: {
10:
11: public function isAlwaysUsed(ConstantReflection $constant): bool;
12:
13: }
14: