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