| 1 | <?php |
||
| 5 | class ApiService |
||
| 6 | { |
||
| 7 | /** @var ElasticApi */ |
||
| 8 | protected $elasticApi; |
||
| 9 | |||
| 10 | /** @var string */ |
||
| 11 | protected $index; |
||
| 12 | |||
| 13 | 3 | public function __construct(ElasticApi $elasticApi, string $index) |
|
| 18 | |||
| 19 | 2 | public function createIndex() |
|
| 23 | |||
| 24 | 2 | public function createType(string $type) |
|
| 28 | |||
| 29 | 1 | public function updateType(string $type) |
|
| 39 | } |
||
| 40 |