Skip to content

Commit e773020

Browse files
committed
clean check
1 parent 77f0fa6 commit e773020

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

rules/DowngradePhp85/Rector/StmtsAwareInterface/DowngradePipeOperatorRector.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -225,9 +225,9 @@ private function isCallableNode(Node $node): bool
225225
return $node instanceof FuncCall ||
226226
$node instanceof Closure ||
227227
$node instanceof ArrowFunction ||
228-
($node instanceof Variable) ||
229-
($node instanceof MethodCall) ||
230-
($node instanceof StaticCall);
228+
$node instanceof Variable ||
229+
$node instanceof MethodCall ||
230+
$node instanceof StaticCall;
231231
}
232232

233233
/**

0 commit comments

Comments
 (0)