2020-09-09 10:52:43 +02:00
|
|
|
<?php
|
|
|
|
|
2021-05-09 20:15:43 +00:00
|
|
|
declare (strict_types=1);
|
2020-09-09 10:52:43 +02:00
|
|
|
namespace Rector\Naming\Matcher;
|
|
|
|
|
2021-03-01 02:28:35 +01:00
|
|
|
use PhpParser\Node\Expr\Closure;
|
2020-09-09 10:52:43 +02:00
|
|
|
use PhpParser\Node\Expr\Variable;
|
2021-03-01 02:28:35 +01:00
|
|
|
use PhpParser\Node\Stmt\ClassMethod;
|
2020-09-09 10:52:43 +02:00
|
|
|
use PhpParser\Node\Stmt\Foreach_;
|
2021-03-01 02:28:35 +01:00
|
|
|
use PhpParser\Node\Stmt\Function_;
|
|
|
|
use Rector\Naming\ValueObject\VariableAndCallForeach;
|
|
|
|
use Rector\NodeNameResolver\NodeNameResolver;
|
2021-07-15 03:40:51 +00:00
|
|
|
use Rector\NodeNestingScope\ParentFinder;
|
2021-03-01 02:28:35 +01:00
|
|
|
final class ForeachMatcher
|
2020-09-09 10:52:43 +02:00
|
|
|
{
|
|
|
|
/**
|
2021-05-10 23:39:21 +00:00
|
|
|
* @var \Rector\NodeNameResolver\NodeNameResolver
|
2020-09-09 10:52:43 +02:00
|
|
|
*/
|
2021-03-01 02:28:35 +01:00
|
|
|
private $nodeNameResolver;
|
|
|
|
/**
|
2021-05-10 23:39:21 +00:00
|
|
|
* @var \Rector\Naming\Matcher\CallMatcher
|
2021-03-01 02:28:35 +01:00
|
|
|
*/
|
|
|
|
private $callMatcher;
|
2021-07-15 03:40:51 +00:00
|
|
|
/**
|
|
|
|
* @var \Rector\NodeNestingScope\ParentFinder
|
|
|
|
*/
|
|
|
|
private $parentFinder;
|
2021-07-18 02:11:18 +00:00
|
|
|
public function __construct(\Rector\NodeNameResolver\NodeNameResolver $nodeNameResolver, \Rector\Naming\Matcher\CallMatcher $callMatcher, \Rector\NodeNestingScope\ParentFinder $parentFinder)
|
2021-05-09 20:15:43 +00:00
|
|
|
{
|
2021-03-01 02:28:35 +01:00
|
|
|
$this->nodeNameResolver = $nodeNameResolver;
|
|
|
|
$this->callMatcher = $callMatcher;
|
2021-07-15 03:40:51 +00:00
|
|
|
$this->parentFinder = $parentFinder;
|
2021-03-01 02:28:35 +01:00
|
|
|
}
|
2021-05-10 22:23:08 +00:00
|
|
|
public function match(\PhpParser\Node\Stmt\Foreach_ $foreach) : ?\Rector\Naming\ValueObject\VariableAndCallForeach
|
2021-03-01 02:28:35 +01:00
|
|
|
{
|
|
|
|
$call = $this->callMatcher->matchCall($foreach);
|
|
|
|
if ($call === null) {
|
|
|
|
return null;
|
|
|
|
}
|
2021-05-10 22:23:08 +00:00
|
|
|
if (!$foreach->valueVar instanceof \PhpParser\Node\Expr\Variable) {
|
2021-03-01 02:28:35 +01:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
$functionLike = $this->getFunctionLike($foreach);
|
|
|
|
if ($functionLike === null) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
$variableName = $this->nodeNameResolver->getName($foreach->valueVar);
|
|
|
|
if ($variableName === null) {
|
2020-09-09 10:52:43 +02:00
|
|
|
return null;
|
|
|
|
}
|
2021-05-10 22:23:08 +00:00
|
|
|
return new \Rector\Naming\ValueObject\VariableAndCallForeach($foreach->valueVar, $call, $variableName, $functionLike);
|
2020-09-09 10:52:43 +02:00
|
|
|
}
|
|
|
|
/**
|
2021-06-29 13:37:16 +00:00
|
|
|
* @return \PhpParser\Node\Stmt\ClassMethod|\PhpParser\Node\Stmt\Function_|\PhpParser\Node\Expr\Closure|null
|
2020-09-09 10:52:43 +02:00
|
|
|
*/
|
2021-06-29 13:37:16 +00:00
|
|
|
private function getFunctionLike(\PhpParser\Node\Stmt\Foreach_ $foreach)
|
2020-09-09 10:52:43 +02:00
|
|
|
{
|
2021-07-15 03:40:51 +00:00
|
|
|
return $this->parentFinder->findByTypes($foreach, [\PhpParser\Node\Expr\Closure::class, \PhpParser\Node\Stmt\ClassMethod::class, \PhpParser\Node\Stmt\Function_::class]);
|
2020-09-09 10:52:43 +02:00
|
|
|
}
|
|
|
|
}
|