-
-
Notifications
You must be signed in to change notification settings - Fork 438
Expand file tree
/
Copy pathRemoveEmptyClassMethodRector.php
More file actions
202 lines (167 loc) · 5.63 KB
/
RemoveEmptyClassMethodRector.php
File metadata and controls
202 lines (167 loc) · 5.63 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
<?php
declare(strict_types=1);
namespace Rector\DeadCode\Rector\ClassMethod;
use PhpParser\Comment\Doc;
use PhpParser\Node;
use PhpParser\Node\Stmt\Class_;
use PhpParser\Node\Stmt\ClassMethod;
use PHPStan\PhpDocParser\Ast\PhpDoc\DeprecatedTagValueNode;
use PHPStan\Reflection\ClassReflection;
use Rector\BetterPhpDocParser\PhpDocInfo\PhpDocInfo;
use Rector\BetterPhpDocParser\PhpDocInfo\PhpDocInfoFactory;
use Rector\Configuration\Parameter\FeatureFlags;
use Rector\DeadCode\NodeAnalyzer\IsClassMethodUsedAnalyzer;
use Rector\DeadCode\NodeManipulator\ControllerClassMethodManipulator;
use Rector\NodeAnalyzer\ParamAnalyzer;
use Rector\NodeManipulator\ClassMethodManipulator;
use Rector\PHPStan\ScopeFetcher;
use Rector\Rector\AbstractRector;
use Rector\ValueObject\MethodName;
use Symplify\RuleDocGenerator\ValueObject\CodeSample\CodeSample;
use Symplify\RuleDocGenerator\ValueObject\RuleDefinition;
/**
* @see \Rector\Tests\DeadCode\Rector\ClassMethod\RemoveEmptyClassMethodRector\RemoveEmptyClassMethodRectorTest
*/
final class RemoveEmptyClassMethodRector extends AbstractRector
{
public function __construct(
private readonly ClassMethodManipulator $classMethodManipulator,
private readonly ControllerClassMethodManipulator $controllerClassMethodManipulator,
private readonly ParamAnalyzer $paramAnalyzer,
private readonly PhpDocInfoFactory $phpDocInfoFactory,
private readonly IsClassMethodUsedAnalyzer $isClassMethodUsedAnalyzer
) {
}
public function getRuleDefinition(): RuleDefinition
{
return new RuleDefinition(
'Remove empty class methods not required by parents',
[
new CodeSample(
<<<'CODE_SAMPLE'
class OrphanClass
{
public function __construct()
{
}
}
CODE_SAMPLE
,
<<<'CODE_SAMPLE'
class OrphanClass
{
}
CODE_SAMPLE
),
]
);
}
/**
* @return array<class-string<Node>>
*/
public function getNodeTypes(): array
{
return [Class_::class];
}
/**
* @param Class_ $node
*/
public function refactor(Node $node): ?Class_
{
$hasChanged = false;
foreach ($node->stmts as $key => $stmt) {
if (! $stmt instanceof ClassMethod) {
continue;
}
if ($stmt->stmts !== null && $stmt->stmts !== []) {
continue;
}
if ($stmt->isAbstract()) {
continue;
}
if ($stmt->isFinal() && ! $node->isFinal() && FeatureFlags::treatClassesAsFinal($node) === false) {
continue;
}
if ($this->shouldSkipNonFinalNonPrivateClassMethod($node, $stmt)) {
continue;
}
if ($this->shouldSkipClassMethod($node, $stmt)) {
continue;
}
unset($node->stmts[$key]);
$hasChanged = true;
}
if ($hasChanged) {
return $node;
}
return null;
}
private function shouldSkipNonFinalNonPrivateClassMethod(Class_ $class, ClassMethod $classMethod): bool
{
if ($class->isFinal() || FeatureFlags::treatClassesAsFinal($class)) {
return false;
}
if ($classMethod->isMagic()) {
return false;
}
if ($classMethod->isProtected()) {
return true;
}
return $classMethod->isPublic();
}
private function shouldSkipClassMethod(Class_ $class, ClassMethod $classMethod): bool
{
// is method called somewhere else in the class?
$scope = ScopeFetcher::fetch($class);
if ($this->isClassMethodUsedAnalyzer->isClassMethodUsed($class, $classMethod, $scope)) {
return true;
}
if ($this->classMethodManipulator->isNamedConstructor($classMethod)) {
return true;
}
if ($this->classMethodManipulator->hasParentMethodOrInterfaceMethod($class, $classMethod->name->toString())) {
return true;
}
if ($this->paramAnalyzer->hasPropertyPromotion($classMethod->params)) {
return true;
}
if ($this->hasDeprecatedAnnotation($classMethod)) {
return true;
}
if ($this->controllerClassMethodManipulator->isControllerClassMethod($class, $classMethod)) {
return true;
}
if ($this->isName($classMethod, MethodName::CLONE)) {
return ! $classMethod->isPublic();
}
if ($this->isName($classMethod, MethodName::INVOKE)) {
return true;
}
$classReflection = $scope->getClassReflection();
if (! $classReflection instanceof ClassReflection) {
return false;
}
return $this->isAttributeMarkerConstructor($classMethod, $classReflection);
}
private function hasDeprecatedAnnotation(ClassMethod $classMethod): bool
{
$phpDocInfo = $this->phpDocInfoFactory->createFromNode($classMethod);
if (! $phpDocInfo instanceof PhpDocInfo) {
return false;
}
return $phpDocInfo->hasByType(DeprecatedTagValueNode::class);
}
/**
* Skip constructor in attributes as might be a marker parameter
*/
private function isAttributeMarkerConstructor(ClassMethod $classMethod, ClassReflection $classReflection): bool
{
if (! $this->isName($classMethod, MethodName::CONSTRUCT)) {
return false;
}
if (! $classReflection->isAttributeClass()) {
return false;
}
return $classMethod->getDocComment() instanceof Doc;
}
}