Total Complexity | 3 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types=1); |
||
14 | final class Elasticsearch7Query implements QueryInterface |
||
15 | { |
||
16 | private array $query; |
||
17 | |||
18 | /** @param array $query */ |
||
19 | 3 | public static function fromNative($query): self |
|
23 | } |
||
24 | |||
25 | 1 | public function toNative(): array |
|
28 | } |
||
29 | |||
30 | 1 | private function __construct(array $query = []) |
|
35 |