| 1 | <?php |
||
| 11 | abstract class AbstractList implements ListInterface |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * @inheritDoc |
||
| 15 | */ |
||
| 16 | 1 | public function setParameters(array $parameters): void |
|
| 19 | |||
| 20 | /** |
||
| 21 | * @inheritDoc |
||
| 22 | */ |
||
| 23 | 1 | public function configure(): array |
|
| 27 | |||
| 28 | /** |
||
| 29 | * @inheritDoc |
||
| 30 | */ |
||
| 31 | 1 | public function buildFilterFields(FilterMapper $filterMapper): void |
|
| 34 | |||
| 35 | /** |
||
| 36 | * @inheritdoc |
||
| 37 | */ |
||
| 38 | 1 | public function buildJoinFields(JoinMapper $joinMapper, ListValueInterface $value): void |
|
| 42 | |||
| 43 | /** |
||
| 44 | * @inheritDoc |
||
| 45 | */ |
||
| 46 | 1 | public function configureQuery(QueryBuilder $queryBuilder, ListValueInterface $value): void |
|
| 49 | } |