| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 9 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 29 | 26 | public function __construct(array $config) |
|
| 30 | { |
||
| 31 | 26 | $this->elasticSearchName = $config['elasticsearch_name'] ?? $config['name']; |
|
| 32 | 26 | $this->name = $config['name']; |
|
| 33 | 26 | $this->settings = $config['settings'] ?? []; |
|
| 34 | 26 | $this->useAlias = $config['use_alias'] ?? false; |
|
| 35 | 26 | $this->config = $config['config']; |
|
| 36 | 26 | $this->mapping = $config['mapping']; |
|
| 37 | 26 | $this->model = $config['model']; |
|
| 38 | 26 | } |
|
| 39 | |||
| 45 |