Skip to content

Commit 339c6b3

Browse files
committed
[ci-review] Rector Rectify
1 parent b45ad85 commit 339c6b3

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
@@ -51,7 +51,15 @@ public function getRuleDefinition(): RuleDefinition
5151
*/
5252
public function getNodeTypes(): array
5353
{
54-
return [Cast::class, Empty_::class, BooleanNot::class, Ternary::class, Identical::class, Concat::class, FuncCall::class];
54+
return [
55+
Cast::class,
56+
Empty_::class,
57+
BooleanNot::class,
58+
Ternary::class,
59+
Identical::class,
60+
Concat::class,
61+
FuncCall::class,
62+
];
5563
}
5664

5765
/**

0 commit comments

Comments
 (0)