Total Complexity | 5 |
Total Lines | 37 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
12 | abstract class AbstractList implements ListInterface |
||
13 | { |
||
14 | /** |
||
15 | * @inheritDoc |
||
16 | */ |
||
17 | 1 | public function setParameters(array $parameters): void |
|
18 | { |
||
19 | 1 | } |
|
20 | |||
21 | /** |
||
22 | * @inheritDoc |
||
23 | */ |
||
24 | 1 | public function configure(): array |
|
25 | { |
||
26 | 1 | return []; |
|
27 | } |
||
28 | |||
29 | /** |
||
30 | * @inheritDoc |
||
31 | */ |
||
32 | 1 | public function buildFilterFields(FilterMapper $filterMapper): void |
|
34 | 1 | } |
|
35 | |||
36 | /** |
||
37 | * @inheritdoc |
||
38 | */ |
||
39 | 1 | public function buildJoinFields(JoinMapper $joinMapper, ListValueInterface $value): void |
|
42 | } |
||
43 | |||
44 | /** |
||
45 | * @inheritDoc |
||
46 | */ |
||
47 | 1 | public function configureQuery(QueryBuilder $queryBuilder, ListValueInterface $value): void |
|
49 | 1 | } |
|
50 | } |
||
51 |