| Total Complexity | 2 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 8 | class DockerClientConfig extends AbstractConfig |
||
| 9 | { |
||
| 10 | public const DOCKER_COMMAND = 'docker.command'; |
||
| 11 | |||
| 12 | public const DOCKER_COMPOSE_COMMAND = 'docker.compose.command'; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @return string |
||
| 16 | */ |
||
| 17 | public function getDockerCommand(): string |
||
| 20 | } |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @return string |
||
| 24 | */ |
||
| 25 | public function getDockerComposeCommand(): string |
||
| 28 | } |
||
| 29 | } |