rector/rules/Php80/Rector/Ternary/GetDebugTypeRector.php
Tomas Votruba 96112cb1f0 Updated Rector to commit 2da49992cc
2da49992cc [Downgrade] [PHP 7.2] Make DowngradeParameterTypeWideningRector always downgrade to phpdoc type (#390)
2021-07-05 22:50:18 +00:00

100 lines
3.2 KiB
PHP

<?php
declare (strict_types=1);
namespace Rector\Php80\Rector\Ternary;
use PhpParser\Node;
use PhpParser\Node\Expr\FuncCall;
use PhpParser\Node\Expr\Ternary;
use Rector\Core\Rector\AbstractRector;
use Symplify\RuleDocGenerator\ValueObject\CodeSample\CodeSample;
use Symplify\RuleDocGenerator\ValueObject\RuleDefinition;
/**
* @changelog https://wiki.php.net/rfc/get_debug_type
*
* @see \Rector\Tests\Php80\Rector\Ternary\GetDebugTypeRector\GetDebugTypeRectorTest
*/
final class GetDebugTypeRector extends \Rector\Core\Rector\AbstractRector
{
public function getRuleDefinition() : \Symplify\RuleDocGenerator\ValueObject\RuleDefinition
{
return new \Symplify\RuleDocGenerator\ValueObject\RuleDefinition('Change ternary type resolve to get_debug_type()', [new \Symplify\RuleDocGenerator\ValueObject\CodeSample\CodeSample(<<<'CODE_SAMPLE'
class SomeClass
{
public function run($value)
{
return is_object($value) ? get_class($value) : gettype($value);
}
}
CODE_SAMPLE
, <<<'CODE_SAMPLE'
class SomeClass
{
public function run($value)
{
return get_debug_type($value);
}
}
CODE_SAMPLE
)]);
}
/**
* @return array<class-string<Node>>
*/
public function getNodeTypes() : array
{
return [\PhpParser\Node\Expr\Ternary::class];
}
/**
* @param Ternary $node
*/
public function refactor(\PhpParser\Node $node) : ?\PhpParser\Node
{
if ($this->shouldSkip($node)) {
return null;
}
if (!$this->areValuesIdentical($node)) {
return null;
}
/** @var FuncCall $funcCall */
$funcCall = $node->if;
$firstExpr = $funcCall->args[0]->value;
return $this->nodeFactory->createFuncCall('get_debug_type', [$firstExpr]);
}
private function shouldSkip(\PhpParser\Node\Expr\Ternary $ternary) : bool
{
if (!$ternary->cond instanceof \PhpParser\Node\Expr\FuncCall) {
return \true;
}
if (!$this->nodeNameResolver->isName($ternary->cond, 'is_object')) {
return \true;
}
if (!$ternary->if instanceof \PhpParser\Node\Expr\FuncCall) {
return \true;
}
if (!$this->nodeNameResolver->isName($ternary->if, 'get_class')) {
return \true;
}
if (!$ternary->else instanceof \PhpParser\Node\Expr\FuncCall) {
return \true;
}
return !$this->nodeNameResolver->isName($ternary->else, 'gettype');
}
private function areValuesIdentical(\PhpParser\Node\Expr\Ternary $ternary) : bool
{
/** @var FuncCall $isObjectFuncCall */
$isObjectFuncCall = $ternary->cond;
$firstExpr = $isObjectFuncCall->args[0]->value;
/** @var FuncCall $getClassFuncCall */
$getClassFuncCall = $ternary->if;
$secondExpr = $getClassFuncCall->args[0]->value;
/** @var FuncCall $gettypeFuncCall */
$gettypeFuncCall = $ternary->else;
$thirdExpr = $gettypeFuncCall->args[0]->value;
if (!$this->nodeComparator->areNodesEqual($firstExpr, $secondExpr)) {
return \false;
}
return $this->nodeComparator->areNodesEqual($firstExpr, $thirdExpr);
}
}