mirror of
https://github.com/rectorphp/rector.git
synced 2025-01-17 05:18:18 +01:00
9a4a5b2bc5
eb5df4dde7
Use vendor-patches main branch (#6453)
52 lines
1.4 KiB
PHP
52 lines
1.4 KiB
PHP
<?php
|
|
|
|
declare (strict_types=1);
|
|
namespace Rector\CodeQuality\NodeAnalyzer;
|
|
|
|
use PhpParser\Node\Expr;
|
|
use PhpParser\Node\Expr\ArrayDimFetch;
|
|
use PhpParser\Node\Expr\Assign;
|
|
use PhpParser\Node\Stmt\Expression;
|
|
use PhpParser\Node\Stmt\Foreach_;
|
|
use Rector\PhpParser\Comparing\NodeComparator;
|
|
final class ForeachAnalyzer
|
|
{
|
|
/**
|
|
* @readonly
|
|
*/
|
|
private NodeComparator $nodeComparator;
|
|
public function __construct(NodeComparator $nodeComparator)
|
|
{
|
|
$this->nodeComparator = $nodeComparator;
|
|
}
|
|
/**
|
|
* Matches$
|
|
* foreach ($values as $value) {
|
|
* <$assigns[]> = $value;
|
|
* }
|
|
*/
|
|
public function matchAssignItemsOnlyForeachArrayVariable(Foreach_ $foreach) : ?Expr
|
|
{
|
|
if (\count($foreach->stmts) !== 1) {
|
|
return null;
|
|
}
|
|
$onlyStatement = $foreach->stmts[0];
|
|
if ($onlyStatement instanceof Expression) {
|
|
$onlyStatement = $onlyStatement->expr;
|
|
}
|
|
if (!$onlyStatement instanceof Assign) {
|
|
return null;
|
|
}
|
|
if (!$onlyStatement->var instanceof ArrayDimFetch) {
|
|
return null;
|
|
}
|
|
if ($onlyStatement->var->dim instanceof Expr) {
|
|
return null;
|
|
}
|
|
if (!$this->nodeComparator->areNodesEqual($foreach->valueVar, $onlyStatement->expr)) {
|
|
return null;
|
|
}
|
|
return $onlyStatement->var->var;
|
|
}
|
|
}
|