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