| Total Complexity | 2 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 8 | class ProcessFactory implements ProcessFactoryInterface |
||
| 9 | { |
||
| 10 | protected $tempDir; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * @param string $tempDir |
||
| 14 | */ |
||
| 15 | public function __construct(string $tempDir) |
||
| 18 | } |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @param array $command |
||
| 22 | * |
||
| 23 | * @return \Jellyfish\Process\ProcessInterface |
||
| 24 | */ |
||
| 25 | public function create(array $command): ProcessInterface |
||
| 30 |