rector/packages/DeadCode/src/Rector/FunctionLike/RemoveDeadReturnRector.php

88 lines
1.7 KiB
PHP
Raw Normal View History

2019-03-26 11:17:08 +00:00
<?php declare(strict_types=1);
namespace Rector\DeadCode\Rector\FunctionLike;
use PhpParser\Node;
use PhpParser\Node\Expr\Closure;
use PhpParser\Node\FunctionLike;
use PhpParser\Node\Stmt\ClassMethod;
use PhpParser\Node\Stmt\Function_;
use PhpParser\Node\Stmt\Return_;
use Rector\Rector\AbstractRector;
use Rector\RectorDefinition\CodeSample;
use Rector\RectorDefinition\RectorDefinition;
2019-09-03 09:11:45 +00:00
/**
* @see \Rector\DeadCode\Tests\Rector\FunctionLike\RemoveDeadReturnRector\RemoveDeadReturnRectorTest
*/
2019-03-26 11:17:08 +00:00
final class RemoveDeadReturnRector extends AbstractRector
{
public function getDefinition(): RectorDefinition
{
return new RectorDefinition('Remove last return in the functions, since does not do anything', [
new CodeSample(
2019-09-18 06:14:35 +00:00
<<<'PHP'
2019-03-26 11:17:08 +00:00
class SomeClass
{
public function run()
{
$shallWeDoThis = true;
if ($shallWeDoThis) {
return;
}
return;
}
}
2019-09-18 06:14:35 +00:00
PHP
2019-03-26 11:17:08 +00:00
,
2019-09-18 06:14:35 +00:00
<<<'PHP'
2019-03-26 11:17:08 +00:00
class SomeClass
{
public function run()
{
$shallWeDoThis = true;
if ($shallWeDoThis) {
return;
}
}
}
2019-09-18 06:14:35 +00:00
PHP
2019-03-26 11:17:08 +00:00
),
]);
}
/**
* @return string[]
*/
public function getNodeTypes(): array
{
return [FunctionLike::class];
}
/**
* @param ClassMethod|Function_|Closure $node
*/
public function refactor(Node $node): ?Node
{
if (empty($node->stmts)) {
return null;
}
$lastStmt = $node->stmts[count($node->stmts) - 1];
if (! $lastStmt instanceof Return_) {
return null;
}
if ($lastStmt->expr !== null) {
return null;
}
$this->removeNode($lastStmt);
return $node;
}
}