@@ -44,7 +44,7 @@ |
||
44 | 44 | |
45 | 45 | $selectedChecks = $this->runnerManager->findChecks($filterChecks, $filterGroups, $filterTags); |
46 | 46 | |
47 | - uasort($checks, static function (CheckInterface $a, CheckInterface $b) { |
|
47 | + uasort($checks, static function(CheckInterface $a, CheckInterface $b) { |
|
48 | 48 | return ($a->getGroup() === $b->getGroup()) ? 0 : ($a->getGroup() < $b->getGroup() ? -1 : 1); |
49 | 49 | }); |
50 | 50 |