1 | <?php |
||
21 | class ClearIndexCommand extends Command { |
||
22 | |||
23 | /** |
||
24 | * @var string|null The default command name |
||
25 | */ |
||
26 | protected static $defaultName = 'stinger:search:clear'; |
||
27 | |||
28 | /** |
||
29 | * @var SearchService |
||
30 | */ |
||
31 | protected $searchService; |
||
32 | |||
33 | public function __construct(SearchService $searchService) { |
||
37 | |||
38 | /** |
||
39 | * |
||
40 | * {@inheritdoc} |
||
41 | * |
||
42 | * @see \Symfony\Component\Console\Command\Command::configure() |
||
43 | */ |
||
44 | protected function configure() { |
||
47 | |||
48 | /** |
||
49 | * |
||
50 | * {@inheritdoc} |
||
51 | * |
||
52 | * @see \Symfony\Component\Console\Command\Command::execute() |
||
53 | */ |
||
54 | protected function execute(InputInterface $input, OutputInterface $output) { |
||
57 | } |
||
58 | |||
59 |