mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-24 19:53:14 +01:00
Fix CS error
This commit is contained in:
parent
ac48a16d83
commit
9cc739aef6
@ -54,7 +54,10 @@ final class ReplaceCreateMethodWithoutReviewerRector extends AbstractRector
|
||||
return false;
|
||||
}
|
||||
|
||||
return (! $this->methodArgumentAnalyzer->hasMethodSecondArgument($node) || $this->methodArgumentAnalyzer->isMethodSecondArgumentNull($node));
|
||||
return (
|
||||
! $this->methodArgumentAnalyzer->hasMethodSecondArgument($node)
|
||||
|| $this->methodArgumentAnalyzer->isMethodSecondArgumentNull($node)
|
||||
);
|
||||
}
|
||||
|
||||
public function refactor(Node $node): ?Node
|
||||
|
Loading…
x
Reference in New Issue
Block a user