|
11 | 11 | use PHPStan\Reflection\ReflectionProvider;
|
12 | 12 | use PHPStan\Rules\ClassNameCheck;
|
13 | 13 | use PHPStan\Rules\ClassNameNodePair;
|
| 14 | +use PHPStan\Rules\IdentifierRuleError; |
14 | 15 | use PHPStan\Rules\Rule;
|
15 | 16 | use PHPStan\Rules\RuleErrorBuilder;
|
16 | 17 | use PHPStan\Rules\RuleLevelHelper;
|
|
20 | 21 | use PHPStan\Type\Type;
|
21 | 22 | use PHPStan\Type\TypeCombinator;
|
22 | 23 | use PHPStan\Type\VerbosityLevel;
|
| 24 | +use function array_map; |
23 | 25 | use function array_merge;
|
24 | 26 | use function in_array;
|
25 | 27 | use function sprintf;
|
@@ -47,11 +49,32 @@ public function getNodeType(): string
|
47 | 49 |
|
48 | 50 | public function processNode(Node $node, Scope $scope): array
|
49 | 51 | {
|
50 |
| - if (!$node->name instanceof Node\Identifier) { |
51 |
| - return []; |
| 52 | + $errors = []; |
| 53 | + if ($node->name instanceof Node\Identifier) { |
| 54 | + $constantNames = [$node->name->name]; |
| 55 | + } else { |
| 56 | + $fetchType = $scope->getType($node->name); |
| 57 | + $constantNames = array_map(static fn ($type): string => $type->getValue(), $fetchType->getConstantStrings()); |
| 58 | + $fetchStringType = $fetchType->toString(); |
| 59 | + if (!$fetchStringType->isString()->yes()) { |
| 60 | + $errors[] = RuleErrorBuilder::message(sprintf('Cannot fetch class constant with a non-stringable type %s.', $fetchType->describe(VerbosityLevel::typeOnly()))) |
| 61 | + ->identifier('classConstant.fetchInvalidExpression') |
| 62 | + ->build(); |
| 63 | + } |
| 64 | + } |
| 65 | + |
| 66 | + foreach ($constantNames as $constantName) { |
| 67 | + $errors = array_merge($errors, $this->processSingleClassConstFetch($scope, $node, $constantName)); |
52 | 68 | }
|
53 |
| - $constantName = $node->name->name; |
54 | 69 |
|
| 70 | + return $errors; |
| 71 | + } |
| 72 | + |
| 73 | + /** |
| 74 | + * @return list<IdentifierRuleError> |
| 75 | + */ |
| 76 | + private function processSingleClassConstFetch(Scope $scope, ClassConstFetch $node, string $constantName): array |
| 77 | + { |
55 | 78 | $class = $node->class;
|
56 | 79 | $messages = [];
|
57 | 80 | if ($class instanceof Node\Name) {
|
|
0 commit comments