forked from rectorphp/rector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLogicalToBooleanRector.php
63 lines (56 loc) · 1.65 KB
/
LogicalToBooleanRector.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
<?php
declare(strict_types=1);
namespace Rector\CodeQuality\Rector\LogicalAnd;
use PhpParser\Node;
use PhpParser\Node\Expr\BinaryOp\BooleanAnd;
use PhpParser\Node\Expr\BinaryOp\BooleanOr;
use PhpParser\Node\Expr\BinaryOp\LogicalAnd;
use PhpParser\Node\Expr\BinaryOp\LogicalOr;
use Rector\Core\Rector\AbstractRector;
use Symplify\RuleDocGenerator\ValueObject\CodeSample\CodeSample;
use Symplify\RuleDocGenerator\ValueObject\RuleDefinition;
/**
* @see https://stackoverflow.com/questions/5998309/logical-operators-or-or
* @see https://stackoverflow.com/questions/9454870/php-xor-how-to-use-with-if
* @see \Rector\Tests\CodeQuality\Rector\LogicalAnd\LogicalToBooleanRector\LogicalToBooleanRectorTest
*/
final class LogicalToBooleanRector extends AbstractRector
{
public function getRuleDefinition(): RuleDefinition
{
return new RuleDefinition(
'Change OR, AND to ||, && with more common understanding',
[
new CodeSample(
<<<'CODE_SAMPLE'
if ($f = false or true) {
return $f;
}
CODE_SAMPLE
,
<<<'CODE_SAMPLE'
if (($f = false) || true) {
return $f;
}
CODE_SAMPLE
),
]);
}
/**
* @return array<class-string<Node>>
*/
public function getNodeTypes(): array
{
return [LogicalOr::class, LogicalAnd::class];
}
/**
* @param LogicalOr|LogicalAnd $node
*/
public function refactor(Node $node): ?Node
{
if ($node instanceof LogicalOr) {
return new BooleanOr($node->left, $node->right);
}
return new BooleanAnd($node->left, $node->right);
}
}