| 1 | <?php |
||
| 16 | final class FilterSetCollection |
||
| 17 | { |
||
| 18 | /** |
||
| 19 | * @var array |
||
| 20 | */ |
||
| 21 | private $filterSets = []; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @var FilterConfiguration |
||
| 25 | */ |
||
| 26 | private $filterConfiguration; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @var FilterSetBuilderInterface |
||
| 30 | */ |
||
| 31 | private $filterSetBuilder; |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @param FilterConfiguration $filterConfiguration |
||
| 35 | * @param FilterSetBuilderInterface $filterSetBuilder |
||
| 36 | */ |
||
| 37 | public function __construct(FilterConfiguration $filterConfiguration, FilterSetBuilderInterface $filterSetBuilder) |
||
| 42 | |||
| 43 | /** |
||
| 44 | * @return FilterSetInterface[] |
||
| 45 | */ |
||
| 46 | public function getFilterSets() |
||
| 58 | } |
||
| 59 |