| Total Complexity | 2 | 
| Total Lines | 23 | 
| Duplicated Lines | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php  | 
            ||
| 10 | class ProcessSymfonyFactory  | 
            ||
| 11 | { | 
            ||
| 12 | /**  | 
            ||
| 13 | * @param array $command  | 
            ||
| 14 | *  | 
            ||
| 15 | * @return \Jellyfish\Process\ProcessInterface  | 
            ||
| 16 | */  | 
            ||
| 17 | public function createProcess(array $command): ProcessInterface  | 
            ||
| 22 | );  | 
            ||
| 23 | }  | 
            ||
| 24 | |||
| 25 | /**  | 
            ||
| 26 | * @param array $command  | 
            ||
| 27 | *  | 
            ||
| 28 | * @return \Symfony\Component\Process\Process  | 
            ||
| 29 | */  | 
            ||
| 30 | protected function createSymfonyProcess(array $command): SymfonyProcess  | 
            ||
| 35 |