| Conditions | 3 |
| Paths | 3 |
| Total Lines | 12 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 44 | public function getFilterSets() |
||
| 45 | { |
||
| 46 | if (!empty($this->filterSets)) { |
||
| 47 | return $this->filterSets; |
||
| 48 | } |
||
| 49 | |||
| 50 | foreach ($this->filtersConfiguration as $filterSetName => $filterSetData) { |
||
| 51 | $this->filterSets[] = $this->filterSetBuilder->build($filterSetName, $filterSetData); |
||
| 52 | } |
||
| 53 | |||
| 54 | return $this->filterSets; |
||
| 55 | } |
||
| 56 | } |
||
| 57 |