Scrutinizer GitHub App not installed

We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.

Install GitHub App

Passed
Pull Request — 0.14 (#841)
by Jérémiah
02:54
created
src/Config/Processor/InheritanceProcessor.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
 
40 40
     private static function removedDecorators(array $configs): array
41 41
     {
42
-        return array_filter($configs, fn ($config) => !isset($config['decorator']) || true !== $config['decorator']);
42
+        return array_filter($configs, fn($config) => !isset($config['decorator']) || true !== $config['decorator']);
43 43
     }
44 44
 
45 45
     private static function processConfigsHeirs(array $configs): array
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
         $parentTypes = array_intersect_key($configs, array_flip($parents));
102 102
 
103 103
         // Restore initial order
104
-        uksort($parentTypes, fn ($a, $b) => (int) (array_search($a, $parents, true) > array_search($b, $parents, true)));
104
+        uksort($parentTypes, fn($a, $b) => (int) (array_search($a, $parents, true) > array_search($b, $parents, true)));
105 105
 
106 106
         $mergedParentsConfig = self::mergeConfigs(...array_column($parentTypes, 'config'));
107 107
         $childType = $configs[$child];
Please login to merge, or discard this patch.