Conditions | 3 |
Paths | 3 |
Total Lines | 13 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 12 |
Changes | 0 |
1 | <?php namespace Comodojo\Dispatcher\Components; |
||
25 | public static function load($file) { |
||
26 | |||
27 | $config = static::importData($file); |
||
28 | |||
29 | $plain_plugins = []; |
||
30 | |||
31 | foreach ($config as $package => $plugins) { |
||
32 | foreach ($plugins as $plugin) { |
||
33 | $plain_plugins[] = $plugin; |
||
34 | } |
||
35 | } |
||
36 | |||
37 | return $plain_plugins; |
||
38 | |||
42 |