rector/rules/DeadCode/Rector/If_/UnwrapFutureCompatibleIfPhpVersionRector.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

105 lines
3.1 KiB
PHP

<?php
declare (strict_types=1);
namespace Rector\DeadCode\Rector\If_;
use PhpParser\Node;
use PhpParser\Node\Stmt;
use PhpParser\Node\Stmt\If_;
use Rector\Core\Rector\AbstractRector;
use Rector\DeadCode\ConditionEvaluator;
use Rector\DeadCode\ConditionResolver;
use Rector\DeadCode\Contract\ConditionInterface;
use Symplify\RuleDocGenerator\ValueObject\CodeSample\CodeSample;
use Symplify\RuleDocGenerator\ValueObject\RuleDefinition;
/**
* @changelog https://www.php.net/manual/en/function.version-compare.php
*
* @see \Rector\Tests\DeadCode\Rector\If_\UnwrapFutureCompatibleIfPhpVersionRector\UnwrapFutureCompatibleIfPhpVersionRectorTest
*/
final class UnwrapFutureCompatibleIfPhpVersionRector extends \Rector\Core\Rector\AbstractRector
{
/**
* @var \Rector\DeadCode\ConditionEvaluator
*/
private $conditionEvaluator;
/**
* @var \Rector\DeadCode\ConditionResolver
*/
private $conditionResolver;
public function __construct(\Rector\DeadCode\ConditionEvaluator $conditionEvaluator, \Rector\DeadCode\ConditionResolver $conditionResolver)
{
$this->conditionEvaluator = $conditionEvaluator;
$this->conditionResolver = $conditionResolver;
}
public function getRuleDefinition() : \Symplify\RuleDocGenerator\ValueObject\RuleDefinition
{
return new \Symplify\RuleDocGenerator\ValueObject\RuleDefinition('Remove php version checks if they are passed', [new \Symplify\RuleDocGenerator\ValueObject\CodeSample\CodeSample(<<<'CODE_SAMPLE'
// current PHP: 7.2
if (version_compare(PHP_VERSION, '7.2', '<')) {
return 'is PHP 7.1-';
} else {
return 'is PHP 7.2+';
}
CODE_SAMPLE
, <<<'CODE_SAMPLE'
// current PHP: 7.2
return 'is PHP 7.2+';
CODE_SAMPLE
)]);
}
/**
* @return array<class-string<Node>>
*/
public function getNodeTypes() : array
{
return [\PhpParser\Node\Stmt\If_::class];
}
/**
* @param If_ $node
* @return Stmt[]|null
*/
public function refactor(\PhpParser\Node $node) : ?array
{
if ($node->elseifs) {
return null;
}
$condition = $this->conditionResolver->resolveFromExpr($node->cond);
if (!$condition instanceof \Rector\DeadCode\Contract\ConditionInterface) {
return null;
}
$result = $this->conditionEvaluator->evaluate($condition);
if ($result === null) {
return null;
}
// if is skipped
if ($result) {
return $this->refactorIsMatch($node);
}
return $this->refactorIsNotMatch($node);
}
/**
* @return Stmt[]|null
*/
private function refactorIsMatch(\PhpParser\Node\Stmt\If_ $if) : ?array
{
if ($if->elseifs) {
return null;
}
return $if->stmts;
}
/**
* @return Stmt[]|null
*/
private function refactorIsNotMatch(\PhpParser\Node\Stmt\If_ $if) : ?array
{
// no else → just remove the node
if ($if->else === null) {
$this->removeNode($if);
return null;
}
// else is always used
return $if->else->stmts;
}
}