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