Total Complexity | 3 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
9 | class ProcessFactory |
||
10 | { |
||
11 | /** @var string|array */ |
||
12 | protected $command; |
||
13 | |||
14 | /** @var null|ProcessParamsInterface */ |
||
15 | protected $processParams; |
||
16 | |||
17 | /** |
||
18 | * @param array|string $command |
||
19 | * @param null|ProcessParamsInterface $processParams |
||
20 | */ |
||
21 | public function __construct($command, ?ProcessParamsInterface $processParams = null) |
||
25 | } |
||
26 | |||
27 | public function __invoke(): Process |
||
39 |