| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 4 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 20 | 1 | public function __construct(string $type) |
|
| 21 | { |
||
| 22 | 1 | $expected = \implode(', ', [ |
|
| 23 | 1 | \ELASTICS_TYPE_BEST_FIELDS, |
|
| 24 | \ELASTICS_TYPE_MOST_FIELDS, |
||
| 25 | \ELASTICS_TYPE_CROSS_FIELDS, |
||
| 26 | \ELASTICS_TYPE_PHRASE, |
||
| 27 | \ELASTICS_TYPE_PHRASE_PREFIX, |
||
| 28 | ]); |
||
| 29 | |||
| 30 | 1 | parent::__construct(\sprintf('Invalid match type! Expected: %s. Got: "%s".', $expected, $type)); |
|
| 31 | 1 | } |
|
| 33 |