Skip to content

Commit d2dafe6

Browse files
committed
cs fix
1 parent 9bab626 commit d2dafe6

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

rules/DowngradePhp84/Rector/FuncCall/DowngradeRoundingModeEnumRector.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,10 @@ public function refactor(Node $node): ?Node
7070

7171
$modeArg = $args[2]->value;
7272
$hasChanged = false;
73-
if ($modeArg instanceof ClassConstFetch && $modeArg->class instanceof FullyQualified && $this->isName($modeArg->class, 'RoundingMode')) {
73+
if ($modeArg instanceof ClassConstFetch && $modeArg->class instanceof FullyQualified && $this->isName(
74+
$modeArg->class,
75+
'RoundingMode'
76+
)) {
7477
if (! $modeArg->name instanceof Identifier) {
7578
return null;
7679
}

0 commit comments

Comments
 (0)