Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
26 | 11 | public static function create(string $name, array $config): ConfigurationProcess |
|
27 | { |
||
28 | 11 | return new self( |
|
29 | 11 | $name, |
|
30 | 11 | $config['logger'] ?? 'process_logger_default', |
|
31 | 11 | array_map([ConfigurationStep::class, 'create'], $config['steps']), |
|
32 | 11 | $config['deprecated'] ?? [] |
|
33 | ); |
||
56 |