| Total Complexity | 2 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 8 | class QueryHavingFilter implements HavingFilterInterface |
||
| 9 | { |
||
| 10 | protected FilterInterface $filter; |
||
| 11 | |||
| 12 | 4 | public function __construct(FilterInterface $filter) |
|
| 15 | } |
||
| 16 | |||
| 17 | /** |
||
| 18 | * Return the having filter as it can be used in a druid query. |
||
| 19 | * |
||
| 20 | * @return array<string,string|array<string,string|int|bool|array<mixed>>> |
||
| 21 | */ |
||
| 22 | 3 | public function toArray(): array |
|
| 29 | } |