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