We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -39,7 +39,7 @@ discard block |
||
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 |
||
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]; |