rector/rules/CodeQuality/Rector/If_/SimplifyIfNotNullReturnRector.php

106 lines
2.6 KiB
PHP
Raw Normal View History

2019-10-13 05:59:52 +00:00
<?php
declare(strict_types=1);
namespace Rector\CodeQuality\Rector\If_;
use PhpParser\Node;
use PhpParser\Node\Stmt\If_;
use PhpParser\Node\Stmt\Return_;
use Rector\Core\NodeManipulator\IfManipulator;
use Rector\Core\Rector\AbstractRector;
use Rector\NodeTypeResolver\Node\AttributeKey;
use Symplify\RuleDocGenerator\ValueObject\CodeSample\CodeSample;
use Symplify\RuleDocGenerator\ValueObject\RuleDefinition;
2019-09-03 09:11:45 +00:00
/**
* @see \Rector\Tests\CodeQuality\Rector\If_\SimplifyIfNotNullReturnRector\SimplifyIfNotNullReturnRectorTest
2019-09-03 09:11:45 +00:00
*/
final class SimplifyIfNotNullReturnRector extends AbstractRector
{
/**
* @var IfManipulator
*/
private $ifManipulator;
public function __construct(IfManipulator $ifManipulator)
{
$this->ifManipulator = $ifManipulator;
}
public function getRuleDefinition(): RuleDefinition
{
return new RuleDefinition(
'Changes redundant null check to instant return',
[
new CodeSample(
<<<'CODE_SAMPLE'
$newNode = 'something ;
if ($newNode !== null) {
return $newNode;
}
return null;
CODE_SAMPLE
,
<<<'CODE_SAMPLE'
$newNode = 'something ;
return $newNode;
CODE_SAMPLE
2021-05-06 18:51:25 +00:00
),
]
);
}
/**
* @return array<class-string<Node>>
*/
public function getNodeTypes(): array
{
return [If_::class];
}
/**
* @param If_ $node
*/
public function refactor(Node $node): ?Node
{
$comparedNode = $this->ifManipulator->matchIfNotNullReturnValue($node);
2019-02-17 14:12:47 +00:00
if ($comparedNode !== null) {
$insideIfNode = $node->stmts[0];
$nextNode = $node->getAttribute(AttributeKey::NEXT_NODE);
if (! $nextNode instanceof Return_) {
return null;
}
if ($nextNode->expr === null) {
return null;
}
2021-01-30 23:20:05 +00:00
if (! $this->valueResolver->isNull($nextNode->expr)) {
return null;
}
$this->removeNode($nextNode);
return $insideIfNode;
}
$comparedNode = $this->ifManipulator->matchIfValueReturnValue($node);
2019-02-17 14:12:47 +00:00
if ($comparedNode !== null) {
$nextNode = $node->getAttribute(AttributeKey::NEXT_NODE);
if (! $nextNode instanceof Return_) {
return null;
}
if (! $this->nodeComparator->areNodesEqual($comparedNode, $nextNode->expr)) {
return null;
}
$this->removeNode($nextNode);
return clone $nextNode;
}
return null;
}
}