| Conditions | 4 |
| Paths | 8 |
| Total Lines | 14 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 11 |
| CRAP Score | 4 |
| Changes | 0 | ||
| 1 | <?php |
||
| 38 | 11 | public static function createFormArray(array $config = []) |
|
| 39 | { |
||
| 40 | 11 | if (empty($config['target'])) { |
|
| 41 | 2 | $config['target'] = '.env'; |
|
| 42 | 2 | } |
|
| 43 | 11 | if (empty($config['dist'])) { |
|
| 44 | 3 | $config['dist'] = $config['target'] . '.dist'; |
|
| 45 | 3 | } |
|
| 46 | 11 | if (!isset($config['keep-outdated'])) { |
|
| 47 | 10 | $config['keep-outdated'] = true; |
|
| 48 | 10 | } |
|
| 49 | |||
| 50 | 11 | return new static($config['dist'], $config['target'], (bool) $config['keep-outdated']); |
|
| 51 | } |
||
| 52 | |||
| 77 |