| Conditions | 2 |
| Paths | 2 |
| Total Lines | 11 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 50 | protected function execute(InputInterface $input, OutputInterface $output) |
||
| 51 | { |
||
| 52 | $output->writeln('Checking for happyhour...'); |
||
| 53 | |||
| 54 | $response = $this->client->getResponse(); |
||
| 55 | |||
| 56 | if ($response->isAvailable()) { |
||
| 57 | $output->writeln('Happyhour available.'); |
||
| 58 | $this->adapter->remind($response); |
||
| 59 | } |
||
| 60 | } |
||
| 61 | } |
||
| 62 |