forked from rectorphp/rector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUnwrapFutureCompatibleIfPhpVersionRector.php
123 lines (104 loc) · 2.88 KB
/
UnwrapFutureCompatibleIfPhpVersionRector.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
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
<?php
declare(strict_types=1);
namespace Rector\DeadCode\Rector\If_;
use PhpParser\Node;
use PhpParser\Node\Stmt\If_;
use Rector\Core\Rector\AbstractRector;
use Rector\DeadCode\ConditionEvaluator;
use Rector\DeadCode\ConditionResolver;
use Rector\DeadCode\Contract\ConditionInterface;
use Symplify\RuleDocGenerator\ValueObject\CodeSample\CodeSample;
use Symplify\RuleDocGenerator\ValueObject\RuleDefinition;
/**
* @see https://www.php.net/manual/en/function.version-compare.php
*
* @see \Rector\Tests\DeadCode\Rector\If_\UnwrapFutureCompatibleIfPhpVersionRector\UnwrapFutureCompatibleIfPhpVersionRectorTest
*/
final class UnwrapFutureCompatibleIfPhpVersionRector extends AbstractRector
{
/**
* @var ConditionEvaluator
*/
private $conditionEvaluator;
/**
* @var ConditionResolver
*/
private $conditionResolver;
public function __construct(ConditionEvaluator $conditionEvaluator, ConditionResolver $conditionResolver)
{
$this->conditionEvaluator = $conditionEvaluator;
$this->conditionResolver = $conditionResolver;
}
public function getRuleDefinition(): RuleDefinition
{
return new RuleDefinition(
'Remove php version checks if they are passed',
[
new CodeSample(
<<<'CODE_SAMPLE'
// current PHP: 7.2
if (version_compare(PHP_VERSION, '7.2', '<')) {
return 'is PHP 7.1-';
} else {
return 'is PHP 7.2+';
}
CODE_SAMPLE
,
<<<'CODE_SAMPLE'
// current PHP: 7.2
return 'is PHP 7.2+';
CODE_SAMPLE
),
]);
}
/**
* @return array<class-string<Node>>
*/
public function getNodeTypes(): array
{
return [If_::class];
}
/**
* @param If_ $node
*/
public function refactor(Node $node): ?Node
{
if ((bool) $node->elseifs) {
return null;
}
$condition = $this->conditionResolver->resolveFromExpr($node->cond);
if (! $condition instanceof ConditionInterface) {
return null;
}
$result = $this->conditionEvaluator->evaluate($condition);
if ($result === null) {
return null;
}
// if is skipped
if ($result) {
$this->refactorIsMatch($node);
} else {
$this->refactorIsNotMatch($node);
}
return $node;
}
private function refactorIsMatch(If_ $if): void
{
if ((bool) $if->elseifs) {
return;
}
$this->unwrapStmts($if->stmts, $if);
$this->removeNode($if);
}
private function refactorIsNotMatch(If_ $if): void
{
// no else → just remove the node
if ($if->else === null) {
$this->removeNode($if);
return;
}
// else is always used
$this->unwrapStmts($if->else->stmts, $if);
$this->removeNode($if);
}
}