-
-
Notifications
You must be signed in to change notification settings - Fork 440
Expand file tree
/
Copy pathOptionalParametersAfterRequiredRector.php
More file actions
130 lines (109 loc) · 3.55 KB
/
OptionalParametersAfterRequiredRector.php
File metadata and controls
130 lines (109 loc) · 3.55 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
<?php
declare(strict_types=1);
namespace Rector\CodeQuality\Rector\ClassMethod;
use PhpParser\Node;
use PhpParser\Node\ComplexType;
use PhpParser\Node\Expr;
use PhpParser\Node\Expr\Closure;
use PhpParser\Node\Expr\ConstFetch;
use PhpParser\Node\Identifier;
use PhpParser\Node\IntersectionType;
use PhpParser\Node\Name;
use PhpParser\Node\NullableType;
use PhpParser\Node\Param;
use PhpParser\Node\Stmt\ClassMethod;
use PhpParser\Node\Stmt\Function_;
use PhpParser\Node\UnionType;
use Rector\Rector\AbstractRector;
use Rector\ValueObject\PhpVersionFeature;
use Rector\VersionBonding\Contract\MinPhpVersionInterface;
use Symplify\RuleDocGenerator\ValueObject\CodeSample\CodeSample;
use Symplify\RuleDocGenerator\ValueObject\RuleDefinition;
/**
* @see \Rector\Tests\CodeQuality\Rector\ClassMethod\OptionalParametersAfterRequiredRector\OptionalParametersAfterRequiredRectorTest
*/
final class OptionalParametersAfterRequiredRector extends AbstractRector implements MinPhpVersionInterface
{
public function getRuleDefinition(): RuleDefinition
{
return new RuleDefinition('Add null default value when a required parameter follows an optional one', [
new CodeSample(
<<<'CODE_SAMPLE'
class SomeObject
{
public function run($optional = 1, $required)
{
}
}
CODE_SAMPLE
,
<<<'CODE_SAMPLE'
class SomeObject
{
public function run($optional = 1, $required = null)
{
}
}
CODE_SAMPLE
),
]);
}
/**
* @return array<class-string<Node>>
*/
public function getNodeTypes(): array
{
return [ClassMethod::class, Function_::class, Closure::class];
}
/**
* @param ClassMethod|Function_|Closure $node
*/
public function refactor(Node $node): ClassMethod|Function_|Closure|null
{
if ($node->params === []) {
return null;
}
$hasChanged = false;
foreach ($node->params as $key => $param) {
if ($param->default instanceof Expr) {
continue;
}
if ($param->variadic) {
continue;
}
$previousParam = $node->params[$key - 1] ?? null;
if ($previousParam instanceof Param && $previousParam->default instanceof Expr) {
$hasChanged = true;
$param->default = new ConstFetch(new Name('null'));
if (! $param->type instanceof Node) {
continue;
}
if ($param->type instanceof NullableType) {
continue;
}
if ($param->type instanceof UnionType) {
foreach ($param->type->types as $unionedType) {
if ($unionedType instanceof Identifier && $this->isName($unionedType, 'null')) {
continue 2;
}
}
$param->type->types[] = new Identifier('null');
continue;
}
if ($param->type instanceof IntersectionType) {
$param->type = new UnionType([$param->type, new Identifier('null')]);
continue;
}
if ($param->type instanceof ComplexType) {
continue;
}
$param->type = new NullableType($param->type);
}
}
return $hasChanged ? $node : null;
}
public function provideMinPhpVersion(): int
{
return PhpVersionFeature::NULLABLE_TYPE;
}
}