| Conditions | 3 |
| Paths | 3 |
| Total Lines | 12 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 37 | public function getStacks() |
||
| 38 | { |
||
| 39 | if (!empty($this->stacks)) { |
||
| 40 | return $this->stacks; |
||
| 41 | } |
||
| 42 | |||
| 43 | foreach ($this->filtersConfiguration as $filterSetName => $filterSetData) { |
||
| 44 | $this->stacks[] = $this->stackBuilder->build($filterSetName, $filterSetData); |
||
| 45 | } |
||
| 46 | |||
| 47 | return $this->stacks; |
||
| 48 | } |
||
| 49 | } |
||
| 50 |