*/ final class UnionTypeNodeMapper implements PhpParserNodeMapperInterface { /** * @readonly * @var \Rector\NodeTypeResolver\PHPStan\Type\TypeFactory */ private $typeFactory; /** * @readonly * @var \Rector\StaticTypeMapper\PhpParser\FullyQualifiedNodeMapper */ private $fullyQualifiedNodeMapper; /** * @readonly * @var \Rector\StaticTypeMapper\PhpParser\NameNodeMapper */ private $nameNodeMapper; /** * @readonly * @var \Rector\StaticTypeMapper\PhpParser\IdentifierNodeMapper */ private $identifierNodeMapper; /** * @readonly * @var \Rector\StaticTypeMapper\PhpParser\IntersectionTypeNodeMapper */ private $intersectionTypeNodeMapper; public function __construct(TypeFactory $typeFactory, \Rector\StaticTypeMapper\PhpParser\FullyQualifiedNodeMapper $fullyQualifiedNodeMapper, \Rector\StaticTypeMapper\PhpParser\NameNodeMapper $nameNodeMapper, \Rector\StaticTypeMapper\PhpParser\IdentifierNodeMapper $identifierNodeMapper, \Rector\StaticTypeMapper\PhpParser\IntersectionTypeNodeMapper $intersectionTypeNodeMapper) { $this->typeFactory = $typeFactory; $this->fullyQualifiedNodeMapper = $fullyQualifiedNodeMapper; $this->nameNodeMapper = $nameNodeMapper; $this->identifierNodeMapper = $identifierNodeMapper; $this->intersectionTypeNodeMapper = $intersectionTypeNodeMapper; } public function getNodeType() : string { return UnionType::class; } /** * @param UnionType $node */ public function mapToPHPStan(Node $node) : Type { $types = []; foreach ($node->types as $unionedType) { if ($unionedType instanceof FullyQualified) { $types[] = $this->fullyQualifiedNodeMapper->mapToPHPStan($unionedType); continue; } if ($unionedType instanceof Name) { $types[] = $this->nameNodeMapper->mapToPHPStan($unionedType); continue; } if ($unionedType instanceof Identifier) { $types[] = $this->identifierNodeMapper->mapToPHPStan($unionedType); continue; } $types[] = $this->intersectionTypeNodeMapper->mapToPHPStan($unionedType); } return $this->typeFactory->createMixedPassedOrUnionType($types, \true); } }