?????????? ????????? - ??????????????? - /opt/cpanel/ea-wappspector/vendor/rector/rector/src/PHPStanStaticTypeMapper/PHPStanStaticTypeMapper.php
???????
<?php declare (strict_types=1); namespace Rector\PHPStanStaticTypeMapper; use PhpParser\Node\ComplexType; use PhpParser\Node\Identifier; use PhpParser\Node\Name; use PHPStan\PhpDocParser\Ast\Type\TypeNode; use PHPStan\Type\Type; use Rector\Exception\NotImplementedYetException; use Rector\PHPStanStaticTypeMapper\Contract\TypeMapperInterface; use Rector\PHPStanStaticTypeMapper\Enum\TypeKind; use RectorPrefix202411\Webmozart\Assert\Assert; final class PHPStanStaticTypeMapper { /** * @var TypeMapperInterface[] * @readonly */ private $typeMappers; /** * @param TypeMapperInterface[] $typeMappers */ public function __construct(array $typeMappers) { $this->typeMappers = $typeMappers; Assert::notEmpty($typeMappers); } public function mapToPHPStanPhpDocTypeNode(Type $type) : TypeNode { foreach ($this->typeMappers as $typeMapper) { if (!\is_a($type, $typeMapper->getNodeClass(), \true)) { continue; } return $typeMapper->mapToPHPStanPhpDocTypeNode($type); } throw new NotImplementedYetException(__METHOD__ . ' for ' . \get_class($type)); } /** * @param TypeKind::* $typeKind * @return \PhpParser\Node\Name|\PhpParser\Node\ComplexType|\PhpParser\Node\Identifier|null */ public function mapToPhpParserNode(Type $type, string $typeKind) { foreach ($this->typeMappers as $typeMapper) { if (!\is_a($type, $typeMapper->getNodeClass(), \true)) { continue; } return $typeMapper->mapToPhpParserNode($type, $typeKind); } throw new NotImplementedYetException(__METHOD__ . ' for ' . \get_class($type)); } }
| ver. 1.6 |
Github
|
.
| PHP 8.2.30 | ??????????? ?????????: 0.01 |
proxy
|
phpinfo
|
???????????