| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 20 | interface ProcessBuilderInterface |
||
| 21 | { |
||
| 22 | /** |
||
| 23 | * @param array $arguments arguments for process generation |
||
| 24 | * @return ProcessBuilderInterface |
||
| 25 | */ |
||
| 26 | public function setArguments(array $arguments): ProcessBuilderInterface; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @param int $timeout |
||
| 30 | * @return ProcessBuilderInterface |
||
| 31 | */ |
||
| 32 | public function setTimeout(int $timeout): ProcessBuilderInterface; |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @return Process |
||
| 36 | */ |
||
| 37 | public function getProcess(): Process; |
||
| 38 | } |
||
| 39 |