Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
22 | public function find() |
||
23 | { |
||
24 | if (null === ($executable = $this->executableFinder->find('docker-compose'))) { |
||
25 | throw new \RuntimeException( |
||
26 | 'Unable to find docker-compose binary. '. |
||
27 | 'You should run `docker:install` to set up your Docker environment' |
||
28 | ); |
||
29 | } |
||
30 | |||
31 | return $executable; |
||
32 | } |
||
33 | } |
||
34 |