diff options
Diffstat (limited to 'core/Command/App/CheckCode.php')
-rw-r--r-- | core/Command/App/CheckCode.php | 2 |
1 files changed, 1 insertions, 1 deletions
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) { |