| 1 | <?php |
||
| 22 | final class Index implements DumperInterface |
||
| 23 | { |
||
| 24 | /** |
||
| 25 | * @var string |
||
| 26 | */ |
||
| 27 | public $indexName; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @deprecated will be removed in v7 since there will be no more types in the indexes. |
||
| 31 | * @var string |
||
| 32 | */ |
||
| 33 | public $typeName; |
||
| 34 | |||
| 35 | /** |
||
| 36 | * Options is a custom configuration to pass to the client when index is created. |
||
| 37 | * e.g. you can use it for the dynamic templates |
||
| 38 | * |
||
| 39 | * @var array |
||
| 40 | */ |
||
| 41 | public $options = []; |
||
| 42 | |||
| 43 | /** |
||
| 44 | * {@inheritdoc} |
||
| 45 | */ |
||
| 46 | public function dump(array $exclude = []) |
||
| 53 | } |
||
| 54 |