| 1 | <?php |
||
| 22 | final class GamesFetchCommand extends Command |
||
| 23 | { |
||
| 24 | /** |
||
| 25 | * @var FetchAllGamesJob |
||
| 26 | */ |
||
| 27 | private $job; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * Constructor. |
||
| 31 | * |
||
| 32 | * @param FetchAllGamesJob $job |
||
| 33 | */ |
||
| 34 | public function __construct(FetchAllGamesJob $job) |
||
| 40 | |||
| 41 | /** |
||
| 42 | * {@inheritdoc} |
||
| 43 | */ |
||
| 44 | protected function configure() |
||
| 49 | |||
| 50 | /** |
||
| 51 | * {@inheritdoc} |
||
| 52 | */ |
||
| 53 | protected function execute(InputInterface $input, OutputInterface $output) |
||
| 57 | } |
||
| 58 |