| 1 | <?php |
||
| 17 | class Rebuild extends Command |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * @var string $name |
||
| 21 | */ |
||
| 22 | protected $name = 'search:rebuild'; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @var string $description |
||
| 26 | */ |
||
| 27 | protected $description = 'Rebuild the search index'; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @var OutputInterface |
||
| 31 | */ |
||
| 32 | protected $output; |
||
| 33 | |||
| 34 | /** |
||
| 35 | * Handle |
||
| 36 | * |
||
| 37 | * @return void |
||
| 38 | */ |
||
| 39 | 3 | public function handle() |
|
| 57 | } |
||
| 58 |