rector/rules/CodingStyle/Rector/Ternary/TernaryConditionVariableAssignmentRector.php
Tomas Votruba 7d36c3b0b9 Updated Rector to commit a80cf5292d
a80cf5292d revert to working scoper 0.14
2021-05-10 22:23:08 +00:00

76 lines
2.4 KiB
PHP

<?php
declare (strict_types=1);
namespace Rector\CodingStyle\Rector\Ternary;
use PhpParser\Node;
use PhpParser\Node\Expr\Assign;
use PhpParser\Node\Expr\Ternary;
use PhpParser\Node\Expr\Variable;
use Rector\Core\Rector\AbstractRector;
use Rector\NodeTypeResolver\Node\AttributeKey;
use Symplify\RuleDocGenerator\ValueObject\CodeSample\CodeSample;
use Symplify\RuleDocGenerator\ValueObject\RuleDefinition;
/**
* @see \Rector\Tests\CodingStyle\Rector\Ternary\TernaryConditionVariableAssignmentRector\TernaryConditionVariableAssignmentRectorTest
*/
final class TernaryConditionVariableAssignmentRector extends \Rector\Core\Rector\AbstractRector
{
public function getRuleDefinition() : \Symplify\RuleDocGenerator\ValueObject\RuleDefinition
{
return new \Symplify\RuleDocGenerator\ValueObject\RuleDefinition('Assign outcome of ternary condition to variable, where applicable', [new \Symplify\RuleDocGenerator\ValueObject\CodeSample\CodeSample(<<<'CODE_SAMPLE'
function ternary($value)
{
$value ? $a = 1 : $a = 0;
}
CODE_SAMPLE
, <<<'CODE_SAMPLE'
function ternary($value)
{
$a = $value ? 1 : 0;
}
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
{
$nodeIf = $node->if;
$nodeElse = $node->else;
if (!$nodeIf instanceof \PhpParser\Node\Expr\Assign) {
return null;
}
if (!$nodeElse instanceof \PhpParser\Node\Expr\Assign) {
return null;
}
$nodeIfVar = $nodeIf->var;
$nodeElseVar = $nodeElse->var;
if (!$nodeIfVar instanceof \PhpParser\Node\Expr\Variable) {
return null;
}
if (!$nodeElseVar instanceof \PhpParser\Node\Expr\Variable) {
return null;
}
if ($nodeIfVar->name !== $nodeElseVar->name) {
return null;
}
$previousNode = $node->getAttribute(\Rector\NodeTypeResolver\Node\AttributeKey::PREVIOUS_NODE);
if ($previousNode !== null) {
return null;
}
$node->if = $nodeIf->expr;
$node->else = $nodeElse->expr;
$variable = new \PhpParser\Node\Expr\Variable($nodeIfVar->name);
return new \PhpParser\Node\Expr\Assign($variable, $node);
}
}