| 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 | public function __construct(Broadcast $broadcast) |
||
| 39 | |||
| 40 | /** |
||
| 41 | * Configure command. |
||
| 42 | */ |
||
| 43 | protected function configure() |
||
| 52 | |||
| 53 | /** |
||
| 54 | * Execute command. |
||
| 55 | * |
||
| 56 | * @return int|void|null |
||
| 57 | */ |
||
| 58 | public function execute(InputInterface $input, OutputInterface $output) |
||
| 66 | } |
||
| 67 |