-
-
Notifications
You must be signed in to change notification settings - Fork 63
/
ConstantsToBackedEnumValueRector.php
95 lines (83 loc) · 2.97 KB
/
ConstantsToBackedEnumValueRector.php
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
84
85
86
87
88
89
90
91
92
93
94
95
<?php
declare(strict_types=1);
namespace Ssch\TYPO3Rector\General\Renaming;
use PhpParser\Node;
use PhpParser\Node\Expr\ClassConstFetch;
use Rector\Contract\Rector\ConfigurableRectorInterface;
use Rector\Rector\AbstractRector;
use Rector\Renaming\ValueObject\RenameClassAndConstFetch;
use Rector\ValueObject\PhpVersionFeature;
use Rector\VersionBonding\Contract\MinPhpVersionInterface;
use Ssch\TYPO3Rector\Contract\NoChangelogRequiredInterface;
use Symplify\RuleDocGenerator\Contract\DocumentedRuleInterface;
use Symplify\RuleDocGenerator\ValueObject\CodeSample\ConfiguredCodeSample;
use Symplify\RuleDocGenerator\ValueObject\RuleDefinition;
use Webmozart\Assert\Assert;
/**
* @see \Ssch\TYPO3Rector\Tests\Rector\General\Renaming\ConstantsToBackedEnumValueRector\ConstantsToBackedEnumValueRectorTest
*/
final class ConstantsToBackedEnumValueRector extends AbstractRector implements ConfigurableRectorInterface, MinPhpVersionInterface, NoChangelogRequiredInterface, DocumentedRuleInterface
{
/**
* @var RenameClassAndConstFetch[]
*/
private array $renameClassConstFetches = [];
/**
* @param array<int, RenameClassAndConstFetch> $configuration
*/
public function configure(array $configuration): void
{
Assert::allIsAOf($configuration, RenameClassAndConstFetch::class);
$this->renameClassConstFetches = $configuration;
}
public function getRuleDefinition(): RuleDefinition
{
return new RuleDefinition('Migrate all FILETYPE_* constants from AbstractFile to FileType enum class', [
new ConfiguredCodeSample(
<<<'CODE_SAMPLE'
\TYPO3\CMS\Core\Resource\AbstractFile::FILETYPE_UNKNOWN;
CODE_SAMPLE
,
<<<'CODE_SAMPLE'
\TYPO3\CMS\Core\Resource\FileType::UNKNOWN;
CODE_SAMPLE
,
[
new RenameClassAndConstFetch(
'TYPO3\CMS\Core\Imaging\Icon',
'SIZE_MEDIUM',
'TYPO3\CMS\Core\Imaging\IconSize',
'MEDIUM'
),
]
),
]);
}
public function getNodeTypes(): array
{
return [ClassConstFetch::class];
}
/**
* @param ClassConstFetch $node
*/
public function refactor(Node $node): ?Node
{
foreach ($this->renameClassConstFetches as $renameClassConstFetch) {
if (! $this->isName($node->name, $renameClassConstFetch->getOldConstant())) {
continue;
}
if (! $this->isObjectType($node->class, $renameClassConstFetch->getOldObjectType())) {
continue;
}
return $this->nodeFactory->createClassConstFetch(
$renameClassConstFetch->getNewClass(),
$renameClassConstFetch->getNewConstant()
);
}
return null;
}
public function provideMinPhpVersion(): int
{
return PhpVersionFeature::ENUM;
}
}