| Conditions | 2 |
| Paths | 2 |
| Total Lines | 10 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 25 | public function examine(OutputInterface $output, $dryRun) |
||
| 26 | { |
||
| 27 | $output->writeLn('<info>Running Docker Doctor</info>'); |
||
| 28 | |||
| 29 | foreach ($this->tasks as $task) { |
||
| 30 | $task->run($output, $dryRun); |
||
| 31 | } |
||
| 32 | |||
| 33 | $output->writeLn('<info>Yay! Your setup is working perfectly!</info>'); |
||
| 34 | } |
||
| 35 | } |
||
| 36 |