1 | <?php |
||
18 | class ProcessCommand extends Command |
||
19 | { |
||
20 | /** |
||
21 | * @var LoggerInterface |
||
22 | */ |
||
23 | protected $logger; |
||
24 | |||
25 | /** |
||
26 | * @var Broadcast |
||
27 | */ |
||
28 | protected $broadcast; |
||
29 | |||
30 | /** |
||
31 | * ProcessCommand constructor. |
||
32 | * |
||
33 | * @param Broadcast $broadcast |
||
34 | */ |
||
35 | public function __construct(Broadcast $broadcast) |
||
41 | |||
42 | /** |
||
43 | * Configure command |
||
44 | */ |
||
45 | protected function configure() |
||
54 | |||
55 | /** |
||
56 | * Execute command |
||
57 | * |
||
58 | * @param InputInterface $input |
||
59 | * @param OutputInterface $output |
||
60 | * |
||
61 | * @return int|null|void |
||
62 | */ |
||
63 | public function execute(InputInterface $input, OutputInterface $output) |
||
69 | } |
||
70 |