|
| 1 | +<?php declare(strict_types = 1); |
| 2 | + |
| 3 | +namespace PHPStan\Type\Php; |
| 4 | + |
| 5 | +use ArrayAccess; |
| 6 | +use PhpParser\Node\Expr\MethodCall; |
| 7 | +use PHPStan\Analyser\Scope; |
| 8 | +use PHPStan\Analyser\SpecifiedTypes; |
| 9 | +use PHPStan\Analyser\TypeSpecifier; |
| 10 | +use PHPStan\Analyser\TypeSpecifierAwareExtension; |
| 11 | +use PHPStan\Analyser\TypeSpecifierContext; |
| 12 | +use PHPStan\Reflection\MethodReflection; |
| 13 | +use PHPStan\Reflection\ReflectionProvider; |
| 14 | +use PHPStan\Type\Accessory\HasOffsetValueType; |
| 15 | +use PHPStan\Type\Constant\ConstantIntegerType; |
| 16 | +use PHPStan\Type\Constant\ConstantStringType; |
| 17 | +use PHPStan\Type\Generic\GenericObjectType; |
| 18 | +use PHPStan\Type\MethodTypeSpecifyingExtension; |
| 19 | +use function count; |
| 20 | + |
| 21 | +final class ArrayAccessOffsetExistsMethodTypeSpecifyingExtension implements MethodTypeSpecifyingExtension, TypeSpecifierAwareExtension |
| 22 | +{ |
| 23 | + |
| 24 | + private TypeSpecifier $typeSpecifier; |
| 25 | + |
| 26 | + public function setTypeSpecifier(TypeSpecifier $typeSpecifier): void |
| 27 | + { |
| 28 | + $this->typeSpecifier = $typeSpecifier; |
| 29 | + } |
| 30 | + |
| 31 | + public function getClass(): string |
| 32 | + { |
| 33 | + return ArrayAccess::class; |
| 34 | + } |
| 35 | + |
| 36 | + public function isMethodSupported( |
| 37 | + MethodReflection $methodReflection, |
| 38 | + MethodCall $node, |
| 39 | + TypeSpecifierContext $context, |
| 40 | + ): bool |
| 41 | + { |
| 42 | + return $methodReflection->getName() === 'offsetExists' && $context->true(); |
| 43 | + } |
| 44 | + |
| 45 | + public function specifyTypes(MethodReflection $methodReflection, MethodCall $node, Scope $scope, TypeSpecifierContext $context): SpecifiedTypes |
| 46 | + { |
| 47 | + if (count($node->getArgs()) < 1) { |
| 48 | + return new SpecifiedTypes(); |
| 49 | + } |
| 50 | + $key = $node->getArgs()[0]->value; |
| 51 | + $keyType = $scope->getType($key); |
| 52 | + |
| 53 | + if ( |
| 54 | + !$keyType instanceof ConstantStringType |
| 55 | + && !$keyType instanceof ConstantIntegerType |
| 56 | + ) { |
| 57 | + return new SpecifiedTypes(); |
| 58 | + } |
| 59 | + |
| 60 | + foreach ($scope->getType($node->var)->getObjectClassReflections() as $classReflection) { |
| 61 | + $implementsTags = $classReflection->getImplementsTags(); |
| 62 | + |
| 63 | + if ( |
| 64 | + !isset($implementsTags[ArrayAccess::class]) |
| 65 | + || !$implementsTags[ArrayAccess::class]->getType() instanceof GenericObjectType |
| 66 | + ) { |
| 67 | + continue; |
| 68 | + } |
| 69 | + |
| 70 | + $implementsType = $implementsTags[ArrayAccess::class]->getType(); |
| 71 | + $arrayAccessGenericTypes = $implementsType->getTypes(); |
| 72 | + if (!isset($arrayAccessGenericTypes[1])) { |
| 73 | + continue; |
| 74 | + } |
| 75 | + |
| 76 | + return $this->typeSpecifier->create( |
| 77 | + $node->var, |
| 78 | + new HasOffsetValueType($keyType, $arrayAccessGenericTypes[1]), |
| 79 | + $context, |
| 80 | + $scope, |
| 81 | + ); |
| 82 | + } |
| 83 | + |
| 84 | + return new SpecifiedTypes(); |
| 85 | + } |
| 86 | + |
| 87 | +} |
0 commit comments