| 1 | <?php |
||
| 10 | final class IndexExistsCommand extends Command |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var string |
||
| 14 | */ |
||
| 15 | protected $signature = 'laravel-elasticsearch:utils:index-exists |
||
| 16 | {index-name : The index name}'; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @var Client |
||
| 20 | */ |
||
| 21 | private $client; |
||
| 22 | |||
| 23 | public function __construct( |
||
| 30 | |||
| 31 | public function handle(): int |
||
| 68 | } |
||
| 69 |