![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/rector/rector/rules/Privatization/TypeManipulator/ |
<?php declare (strict_types=1); namespace Rector\Privatization\TypeManipulator; use PHPStan\Type\BooleanType; use PHPStan\Type\Constant\ConstantBooleanType; use PHPStan\Type\Constant\ConstantFloatType; use PHPStan\Type\Constant\ConstantIntegerType; use PHPStan\Type\Constant\ConstantStringType; use PHPStan\Type\FloatType; use PHPStan\Type\IntegerType; use PHPStan\Type\StringType; use PHPStan\Type\Type; use PHPStan\Type\TypeTraverser; final class TypeNormalizer { /** * Generalize false/true type to bool, * as mostly default value but accepts both */ public function generalizeConstantBoolTypes(Type $type) : Type { return TypeTraverser::map($type, static function (Type $type, callable $traverseCallback) { if ($type instanceof ConstantBooleanType) { return new BooleanType(); } if ($type instanceof ConstantStringType) { return new StringType(); } if ($type instanceof ConstantFloatType) { return new FloatType(); } if ($type instanceof ConstantIntegerType) { return new IntegerType(); } return $traverseCallback($type, $traverseCallback); }); } }