Skip to content

Commit 66a4eed

Browse files
committed
[ci-review] Rector Rectify
1 parent 4528d7a commit 66a4eed

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

rules/DowngradePhp80/Rector/FuncCall/DowngradeSubstrFalsyRector.php

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,15 @@ public function getRuleDefinition(): RuleDefinition
4949
*/
5050
public function getNodeTypes(): array
5151
{
52-
return [Cast::class, Empty_::class, BooleanNot::class, Ternary::class, Equal::class, Identical::class, FuncCall::class];
52+
return [
53+
Cast::class,
54+
Empty_::class,
55+
BooleanNot::class,
56+
Ternary::class,
57+
Equal::class,
58+
Identical::class,
59+
FuncCall::class,
60+
];
5361
}
5462

5563
/**

0 commit comments

Comments
 (0)