| 1 | <?php |
||
| 14 | class IndexConfig implements IndexConfigInterface |
||
| 15 | { |
||
| 16 | use IndexConfigTrait; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * Indicates if the index should use an alias, allowing an index repopulation to occur |
||
| 20 | * without overwriting the current index. |
||
| 21 | * |
||
| 22 | * @var bool |
||
| 23 | */ |
||
| 24 | private $useAlias = false; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * Constructor expects an array as generated by the Container Configuration builder. |
||
| 28 | */ |
||
| 29 | 26 | public function __construct(array $config) |
|
| 39 | |||
| 40 | 9 | public function isUseAlias(): bool |
|
| 44 | } |
||
| 45 |