| 1 | <?php |
||
| 9 | class ElasticApi |
||
| 10 | { |
||
| 11 | /** @var Client */ |
||
| 12 | protected $client; |
||
| 13 | |||
| 14 | 4 | public function __construct(Client $client) |
|
| 18 | |||
| 19 | 1 | public function createIndex(string $index) |
|
| 25 | |||
| 26 | 1 | public function reindex(string $source, string $destination): array |
|
| 40 | |||
| 41 | 1 | public function removeIndex(string $index) |
|
| 47 | |||
| 48 | 1 | public function createType(string $index, string $entityClass) |
|
| 65 | } |
||
| 66 |