1 | <?php |
||
11 | class PushMessageCommand extends Command |
||
12 | { |
||
13 | /** |
||
14 | * @var EventDispatcherInterface |
||
15 | */ |
||
16 | private $dispatcher; |
||
17 | |||
18 | /** |
||
19 | * @param EventDispatcherInterface $dispatcher |
||
20 | */ |
||
21 | public function __construct(EventDispatcherInterface $dispatcher) |
||
27 | |||
28 | /** |
||
29 | * {@InheritDoc} |
||
30 | */ |
||
31 | protected function configure() |
||
39 | |||
40 | /** |
||
41 | * {@InheritDoc} |
||
42 | */ |
||
43 | protected function execute(InputInterface $input, OutputInterface $output) |
||
53 | } |
||
54 |