rector/packages/NodeTypeResolver/NodeTypeResolver/VariableTypeResolver.php
Tomas Votruba 1f63ed3e55
Reworking trait scope run (#952)
* try reworking trait scope run

* load configs from extension installer

* add trait type

* load configs from extension installer in PHPStan internally in Rector too

* [ci-review] Rector Rectify

Co-authored-by: GitHub Action <action@github.com>
2021-10-04 23:11:10 +02:00

107 lines
3.0 KiB
PHP

<?php
declare(strict_types=1);
namespace Rector\NodeTypeResolver\NodeTypeResolver;
use PhpParser\Node;
use PhpParser\Node\Expr\Variable;
use PhpParser\Node\Param;
use PHPStan\Analyser\Scope;
use PHPStan\Type\MixedType;
use PHPStan\Type\Type;
use Rector\BetterPhpDocParser\PhpDocInfo\PhpDocInfoFactory;
use Rector\NodeNameResolver\NodeNameResolver;
use Rector\NodeTypeResolver\Contract\NodeTypeResolverInterface;
use Rector\NodeTypeResolver\Node\AttributeKey;
/**
* @see \Rector\Tests\NodeTypeResolver\PerNodeTypeResolver\VariableTypeResolver\VariableTypeResolverTest
*/
final class VariableTypeResolver implements NodeTypeResolverInterface
{
/**
* @var string[]
*/
private const PARENT_NODE_ATTRIBUTES = [AttributeKey::PARENT_NODE, AttributeKey::METHOD_NODE];
public function __construct(
private NodeNameResolver $nodeNameResolver,
private PhpDocInfoFactory $phpDocInfoFactory
) {
}
/**
* @return array<class-string<Node>>
*/
public function getNodeClasses(): array
{
return [Variable::class];
}
/**
* @param Variable $node
*/
public function resolve(Node $node): Type
{
$variableName = $this->nodeNameResolver->getName($node);
if ($variableName === null) {
return new MixedType();
}
$scopeType = $this->resolveTypesFromScope($node, $variableName);
if (! $scopeType instanceof MixedType) {
return $scopeType;
}
// get from annotation
$phpDocInfo = $this->phpDocInfoFactory->createFromNodeOrEmpty($node);
return $phpDocInfo->getVarType();
}
private function resolveTypesFromScope(Variable $variable, string $variableName): Type
{
$scope = $this->resolveNodeScope($variable);
if (! $scope instanceof Scope) {
return new MixedType();
}
if (! $scope->hasVariableType($variableName)->yes()) {
return new MixedType();
}
// this → object type is easier to work with and consistent with the rest of the code
return $scope->getVariableType($variableName);
}
private function resolveNodeScope(Variable $variable): ?Scope
{
/** @var Scope|null $nodeScope */
$nodeScope = $variable->getAttribute(AttributeKey::SCOPE);
if ($nodeScope !== null) {
return $nodeScope;
}
return $this->resolveFromParentNodes($variable);
}
private function resolveFromParentNodes(Variable $variable): ?Scope
{
foreach (self::PARENT_NODE_ATTRIBUTES as $parentNodeAttribute) {
$parentNode = $variable->getAttribute($parentNodeAttribute);
if (! $parentNode instanceof Node) {
continue;
}
$parentNodeScope = $parentNode->getAttribute(AttributeKey::SCOPE);
if (! $parentNodeScope instanceof Scope) {
continue;
}
return $parentNodeScope;
}
return null;
}
}