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