1 | <?php |
||
17 | class ParseContentCommand extends Command |
||
18 | { |
||
19 | /** |
||
20 | * Parse content executor |
||
21 | * |
||
22 | * @var ParseContentExecutor |
||
23 | */ |
||
24 | private $parseContentExecutor; |
||
25 | |||
26 | /** |
||
27 | * Set parse content executor |
||
28 | * |
||
29 | * @param ParseContentExecutor $parseContentExecutor |
||
30 | */ |
||
31 | public function setParseContentExecutor(ParseContentExecutor $parseContentExecutor) |
||
35 | |||
36 | /** |
||
37 | * Get parse content executor |
||
38 | * |
||
39 | * @return ParseContentExecutor |
||
40 | */ |
||
41 | public function getParseContentExecutor() : ParseContentExecutor |
||
45 | |||
46 | protected function configure() |
||
51 | |||
52 | protected function execute(InputInterface $input, OutputInterface $output) |
||
56 | } |