| Total Complexity | 1 | 
| Total Lines | 29 | 
| Duplicated Lines | 0 % | 
| Coverage | 100% | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php | ||
| 10 | final class FlushCommand extends Command | ||
| 11 | { | ||
| 12 | /** | ||
| 13 |      * {@inheritdoc} | ||
| 14 | */ | ||
| 15 |     protected $signature = 'scout:flush {searchable?* : The name of the searchable}'; | ||
| 16 | |||
| 17 | /** | ||
| 18 |      * {@inheritdoc} | ||
| 19 | */ | ||
| 20 | protected $description = 'Flush the index of the the given searchable'; | ||
| 21 | |||
| 22 | /** | ||
| 23 |      * {@inheritdoc} | ||
| 24 | */ | ||
| 25 | 1 | public function handle(): void | |
| 42 |