From d9015a8c94bfd71fe484618a06d276701d3bf9ff Mon Sep 17 00:00:00 2001 From: Christoph Wurst Date: Mon, 5 Oct 2020 15:12:57 +0200 Subject: Format code to a single space around binary operators Signed-off-by: Christoph Wurst --- core/Command/App/CheckCode.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core/Command/App') diff --git a/core/Command/App/CheckCode.php b/core/Command/App/CheckCode.php index f7b3723a8d3..40d632a1ad3 100644 --- a/core/Command/App/CheckCode.php +++ b/core/Command/App/CheckCode.php @@ -112,7 +112,7 @@ class CheckCode extends Command implements CompletionAwareInterface { $output->writeln(" {$count} errors"); } usort($errors, function ($a, $b) { - return $a['line'] >$b['line']; + return $a['line'] > $b['line']; }); foreach ($errors as $p) { -- cgit v1.2.3