| Total Complexity | 2 |
| Total Lines | 14 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php declare(strict_types = 1); |
||
| 10 | class ProcessHandlerFactory |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * Returns a process handler depending on the configuration. |
||
| 14 | * @param Config $config The application configuration. |
||
| 15 | * @return ProcessHandler |
||
| 16 | */ |
||
| 17 | public function getProcessHandler(Config $config): ProcessHandler |
||
| 26 |