-
-
Notifications
You must be signed in to change notification settings - Fork 439
Expand file tree
/
Copy pathConstFetchToClassConstFetchRector.php
More file actions
65 lines (55 loc) · 2 KB
/
ConstFetchToClassConstFetchRector.php
File metadata and controls
65 lines (55 loc) · 2 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
<?php
declare(strict_types=1);
namespace Rector\Transform\Rector\ConstFetch;
use PhpParser\Node;
use PhpParser\Node\Expr\ClassConstFetch;
use PhpParser\Node\Expr\ConstFetch;
use Rector\Contract\Rector\ConfigurableRectorInterface;
use Rector\Rector\AbstractRector;
use Rector\Transform\ValueObject\ConstFetchToClassConstFetch;
use Symplify\RuleDocGenerator\ValueObject\CodeSample\ConfiguredCodeSample;
use Symplify\RuleDocGenerator\ValueObject\RuleDefinition;
use Webmozart\Assert\Assert;
/**
* @see Rector\Tests\Transform\Rector\ConstFetch\ConstFetchToClassConstFetchRector\ConstFetchToClassConstFetchTest
*/
final class ConstFetchToClassConstFetchRector extends AbstractRector implements ConfigurableRectorInterface
{
/**
* @var ConstFetchToClassConstFetch[]
*/
private array $constFetchToClassConsts = [];
public function getRuleDefinition(): RuleDefinition
{
return new RuleDefinition('Change const fetch to class const fetch', [
new ConfiguredCodeSample('$x = CONTEXT_COURSE', '$x = course::LEVEL', [
new ConstFetchToClassConstFetch('CONTEXT_COURSE', 'course', 'LEVEL'),
]),
]);
}
/**
* @return array<int, class-string<ConstFetch>>
*/
public function getNodeTypes(): array
{
return [ConstFetch::class];
}
public function refactor(Node $node): ?ClassConstFetch
{
foreach ($this->constFetchToClassConsts as $constFetchToClassConst) {
if (! $this->isName($node, $constFetchToClassConst->getOldConstName())) {
continue;
}
return $this->nodeFactory->createClassConstFetch(
$constFetchToClassConst->getNewClassName(),
$constFetchToClassConst->getNewConstName()
);
}
return null;
}
public function configure(array $configuration): void
{
Assert::allIsAOf($configuration, ConstFetchToClassConstFetch::class);
$this->constFetchToClassConsts = $configuration;
}
}