forked from rectorphp/rector-src
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCallLikeExpectsThisBoundClosureArgsAnalyzer.php
More file actions
83 lines (65 loc) · 2.36 KB
/
CallLikeExpectsThisBoundClosureArgsAnalyzer.php
File metadata and controls
83 lines (65 loc) · 2.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<?php
declare(strict_types=1);
namespace Rector\NodeAnalyzer;
use PhpParser\Node\Arg;
use PhpParser\Node\Expr\CallLike;
use PhpParser\Node\Expr\Closure;
use PHPStan\Reflection\ExtendedParameterReflection;
use Rector\NodeTypeResolver\Node\AttributeKey;
use Rector\NodeTypeResolver\PHPStan\ParametersAcceptorSelectorVariantsWrapper;
use Rector\Reflection\ReflectionResolver;
final readonly class CallLikeExpectsThisBoundClosureArgsAnalyzer
{
public function __construct(
private ReflectionResolver $reflectionResolver
) {
}
/**
* @return Arg[]
*/
public function getArgsUsingThisBoundClosure(CallLike $callLike): array
{
$args = [];
$reflection = $this->reflectionResolver->resolveFunctionLikeReflectionFromCall($callLike);
if ($callLike->isFirstClassCallable() || $callLike->getArgs() === []) {
return [];
}
if ($reflection === null) {
return [];
}
$scope = $callLike->getAttribute(AttributeKey::SCOPE);
if ($scope === null) {
return [];
}
$parametersAcceptor = ParametersAcceptorSelectorVariantsWrapper::select($reflection, $callLike, $scope);
$parameters = $parametersAcceptor->getParameters();
foreach ($callLike->getArgs() as $index => $arg) {
if (! $arg->value instanceof Closure) {
continue;
}
if ($arg->name?->name !== null) {
foreach ($parameters as $parameter) {
if (! $parameter instanceof ExtendedParameterReflection) {
continue;
}
$hasObjectBinding = (bool) $parameter->getClosureThisType();
if ($hasObjectBinding && $arg->name->name === $parameter->getName()) {
$args[] = $arg;
}
}
continue;
}
if (! is_string($arg->name?->name)) {
$parameter = $parameters[$index] ?? null;
if (! $parameter instanceof ExtendedParameterReflection) {
continue;
}
$hasObjectBinding = (bool) $parameter->getClosureThisType();
if ($hasObjectBinding) {
$args[] = $arg;
}
}
}
return $args;
}
}