| 1 | <?php |
||
| 16 | class RemindCommand extends Command |
||
| 17 | { |
||
| 18 | /** @var AdapterInterface */ |
||
| 19 | protected $adapter; |
||
| 20 | |||
| 21 | /** @var ClientInterface */ |
||
| 22 | protected $client; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * CheckCommand constructor. |
||
| 26 | * |
||
| 27 | * @param AdapterInterface $adapter |
||
| 28 | * @param ClientInterface $client |
||
| 29 | */ |
||
| 30 | public function __construct(AdapterInterface $adapter, ClientInterface $client) |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @inheritDoc |
||
| 40 | */ |
||
| 41 | protected function configure() |
||
| 46 | |||
| 47 | /** |
||
| 48 | * @inheritDoc |
||
| 49 | */ |
||
| 50 | protected function execute(InputInterface $input, OutputInterface $output) |
||
| 61 | } |
||
| 62 |