-
-
Notifications
You must be signed in to change notification settings - Fork 440
Expand file tree
/
Copy pathArgsAnalyzer.php
More file actions
51 lines (41 loc) · 1.02 KB
/
ArgsAnalyzer.php
File metadata and controls
51 lines (41 loc) · 1.02 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
<?php
declare(strict_types=1);
namespace Rector\NodeAnalyzer;
use PhpParser\Node\Arg;
use PhpParser\Node\Identifier;
use Rector\NodeNameResolver\NodeNameResolver;
final readonly class ArgsAnalyzer
{
public function __construct(
private NodeNameResolver $nodeNameResolver
) {
}
/**
* @param Arg[] $args
*/
public function hasNamedArg(array $args): bool
{
foreach ($args as $arg) {
if ($arg->name instanceof Identifier) {
return true;
}
}
return false;
}
/**
* @param Arg[] $args
*/
public function resolveArgPosition(array $args, string $name, int $defaultPosition): int
{
foreach ($args as $position => $arg) {
if (! $arg->name instanceof Identifier) {
continue;
}
if (! $this->nodeNameResolver->isName($arg->name, $name)) {
continue;
}
return $position;
}
return $defaultPosition;
}
}