| Conditions | 2 |
| Paths | 2 |
| Total Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 3 |
| CRAP Score | 2.0625 |
| Changes | 0 | ||
| 1 | <?php |
||
| 34 | 8 | public function getIndexConfiguration(string $indexName): IndexConfigInterface |
|
| 35 | { |
||
| 36 | 8 | if (!$this->hasIndexConfiguration($indexName)) { |
|
| 37 | throw new \InvalidArgumentException(\sprintf('Index "%s" is not configured.', $indexName)); |
||
| 38 | } |
||
| 39 | |||
| 40 | 8 | return $this->indexes[$indexName]; |
|
| 41 | } |
||
| 42 | |||
| 53 |