We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
27 | 31 | public static function process(array $configs, $type = self::NORMALIZATION) |
|
28 | { |
||
29 | /** @var ProcessorInterface $processor */ |
||
30 | 31 | foreach (static::PROCESSORS[$type] as $processor) { |
|
31 | 31 | $configs = call_user_func([$processor, 'process'], $configs); |
|
32 | } |
||
33 | |||
34 | 31 | return $configs; |
|
35 | } |
||
36 | } |
||
37 |