Updated Rector to commit 54e2e110d506d6e06e45cb808ce87824306ddd4f

54e2e110d5 [CodeQuality] Skip while(true) always returned on ExplicitReturnNullRector (#5810)
This commit is contained in:
Tomas Votruba 2024-04-08 12:23:14 +00:00
parent 8fba5b95f7
commit 415f0bbf34
2 changed files with 49 additions and 10 deletions

View File

@ -14,6 +14,7 @@ use PhpParser\Node\FunctionLike;
use PhpParser\Node\Stmt;
use PhpParser\Node\Stmt\Break_;
use PhpParser\Node\Stmt\Case_;
use PhpParser\Node\Stmt\Class_;
use PhpParser\Node\Stmt\ClassMethod;
use PhpParser\Node\Stmt\Continue_;
use PhpParser\Node\Stmt\Do_;
@ -27,8 +28,12 @@ use PhpParser\Node\Stmt\Return_;
use PhpParser\Node\Stmt\Switch_;
use PhpParser\Node\Stmt\Throw_;
use PhpParser\Node\Stmt\TryCatch;
use PhpParser\Node\Stmt\While_;
use PhpParser\NodeTraverser;
use PHPStan\Reflection\ClassReflection;
use Rector\PhpDocParser\NodeTraverser\SimpleCallableNodeTraverser;
use Rector\PhpParser\Node\BetterNodeFinder;
use Rector\PhpParser\Node\Value\ValueResolver;
use Rector\Reflection\ReflectionResolver;
use Rector\TypeDeclaration\NodeAnalyzer\NeverFuncCallAnalyzer;
final class SilentVoidResolver
@ -48,11 +53,23 @@ final class SilentVoidResolver
* @var \Rector\TypeDeclaration\NodeAnalyzer\NeverFuncCallAnalyzer
*/
private $neverFuncCallAnalyzer;
public function __construct(BetterNodeFinder $betterNodeFinder, ReflectionResolver $reflectionResolver, NeverFuncCallAnalyzer $neverFuncCallAnalyzer)
/**
* @readonly
* @var \Rector\PhpParser\Node\Value\ValueResolver
*/
private $valueResolver;
/**
* @readonly
* @var \Rector\PhpDocParser\NodeTraverser\SimpleCallableNodeTraverser
*/
private $simpleCallableNodeTraverser;
public function __construct(BetterNodeFinder $betterNodeFinder, ReflectionResolver $reflectionResolver, NeverFuncCallAnalyzer $neverFuncCallAnalyzer, ValueResolver $valueResolver, SimpleCallableNodeTraverser $simpleCallableNodeTraverser)
{
$this->betterNodeFinder = $betterNodeFinder;
$this->reflectionResolver = $reflectionResolver;
$this->neverFuncCallAnalyzer = $neverFuncCallAnalyzer;
$this->valueResolver = $valueResolver;
$this->simpleCallableNodeTraverser = $simpleCallableNodeTraverser;
}
/**
* @param \PhpParser\Node\Stmt\ClassMethod|\PhpParser\Node\Expr\Closure|\PhpParser\Node\Stmt\Function_ $functionLike
@ -101,20 +118,42 @@ final class SilentVoidResolver
if ($this->isIfReturn($stmt)) {
return \true;
}
if ($stmt instanceof Do_ && $this->isDoWithAlwaysReturnOrExit($stmt)) {
return \true;
if (!$this->isDoOrWhileWithAlwaysReturnOrExit($stmt)) {
continue;
}
return \true;
}
return \false;
}
private function isDoWithAlwaysReturnOrExit(Do_ $do) : bool
/**
* @param \PhpParser\Node\Stmt\Do_|\PhpParser\Node\Stmt\While_ $node
*/
private function isFoundLoopControl($node) : bool
{
if (!$this->hasStmtsAlwaysReturnOrExit($do->stmts)) {
$isFoundLoopControl = \false;
$this->simpleCallableNodeTraverser->traverseNodesWithCallable($node->stmts, static function (Node $subNode) use(&$isFoundLoopControl) {
if ($subNode instanceof Class_ || $subNode instanceof Function_ || $subNode instanceof Closure) {
return NodeTraverser::DONT_TRAVERSE_CURRENT_AND_CHILDREN;
}
if ($subNode instanceof Break_ || $subNode instanceof Continue_ || $subNode instanceof Goto_) {
$isFoundLoopControl = \true;
return NodeTraverser::STOP_TRAVERSAL;
}
});
return $isFoundLoopControl;
}
private function isDoOrWhileWithAlwaysReturnOrExit(Stmt $stmt) : bool
{
if (!$stmt instanceof Do_ && !$stmt instanceof While_) {
return \false;
}
return !(bool) $this->betterNodeFinder->findFirst($do->stmts, static function (Node $node) : bool {
return $node instanceof Break_ || $node instanceof Continue_ || $node instanceof Goto_;
});
if ($this->valueResolver->isTrue($stmt->cond)) {
return !$this->isFoundLoopControl($stmt);
}
if (!$this->hasStmtsAlwaysReturnOrExit($stmt->stmts)) {
return \false;
}
return !$this->isFoundLoopControl($stmt);
}
/**
* @param \PhpParser\Node\Stmt|\PhpParser\Node\Expr $stmt

View File

@ -19,12 +19,12 @@ final class VersionResolver
* @api
* @var string
*/
public const PACKAGE_VERSION = 'b292010edec6f45b5a48d1f001edce95e05162f3';
public const PACKAGE_VERSION = '54e2e110d506d6e06e45cb808ce87824306ddd4f';
/**
* @api
* @var string
*/
public const RELEASE_DATE = '2024-04-08 16:41:47';
public const RELEASE_DATE = '2024-04-08 14:20:29';
/**
* @var int
*/