| 1 | <?php |
||
| 7 | class Logs implements \Dock\Docker\Containers\Logs |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @var ComposeExecutableFinder |
||
| 11 | */ |
||
| 12 | private $composeExecutableFinder; |
||
| 13 | /** |
||
| 14 | * @var ProcessRunner |
||
| 15 | */ |
||
| 16 | private $processRunner; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @param ComposeExecutableFinder $composeExecutableFinder |
||
| 20 | * @param ProcessRunner $processRunner |
||
| 21 | */ |
||
| 22 | public function __construct(ComposeExecutableFinder $composeExecutableFinder, ProcessRunner $processRunner) |
||
| 27 | |||
| 28 | public function displayAll() |
||
| 32 | |||
| 33 | /** |
||
| 34 | * {@inheritdoc} |
||
| 35 | */ |
||
| 36 | public function displayComponent($component) |
||
| 40 | |||
| 41 | /** |
||
| 42 | * @param $composeLogsArguments |
||
| 43 | */ |
||
| 44 | private function displayLogs($composeLogsArguments) |
||
| 48 | } |
||
| 49 |