Completed
Push — master ( 13c004...92d87a )
by Vladimir
06:13
created
src/Runner/RunnerManager.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@
 block discarded – undo
66 66
     {
67 67
         $checks = $this->findChecks($ids, $groups, $tags);
68 68
 
69
-        uasort($checks, static function (CheckInterface $a, CheckInterface $b) {
69
+        uasort($checks, static function(CheckInterface $a, CheckInterface $b) {
70 70
             return ($a->getGroup() === $b->getGroup()) ? 0 : ($a->getGroup() < $b->getGroup() ? -1 : 1);
71 71
         });
72 72
 
Please login to merge, or discard this patch.
src/Check/CheckPluginAbstract.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -111,7 +111,7 @@
 block discarded – undo
111 111
             ->children()
112 112
                 ->scalarNode('importance')
113 113
                     ->validate()
114
-                        ->ifTrue(static function ($value) {
114
+                        ->ifTrue(static function($value) {
115 115
                             if (null === $value) {
116 116
                                 return false;
117 117
                             } else if (\in_array($value, CheckAbstract::getImportances(), true)) {
Please login to merge, or discard this patch.