| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 10 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | 1 | public function __invoke(array $options) |
|
| 14 | { |
||
| 15 | 1 | $command = (string) ($options['command'] ?? null); |
|
| 16 | 1 | $cwd = (string) ($options['cwd'] ?? null); |
|
| 17 | 1 | $level = (int) ($options['level'] ?? Logger::DEBUG); |
|
| 18 | 1 | $bubble = (bool) ($options['bubble'] ?? true); |
|
| 19 | |||
| 20 | 1 | return new ProcessHandler( |
|
| 21 | 1 | $command, |
|
| 22 | 1 | $level, |
|
| 23 | 1 | $bubble, |
|
| 24 | 1 | $cwd |
|
| 25 | ); |
||
| 26 | } |
||
| 27 | } |
||
| 28 |