| Conditions | 2 |
| Paths | 2 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 16 | 1 | public function buildChain() |
|
| 17 | { |
||
| 18 | 1 | $this->initialize(); |
|
| 19 | /** @var \Aoe\Asdis\System\Uri\Filter\Chain $chain */ |
||
| 20 | 1 | $chain = new Chain(); |
|
| 21 | 1 | foreach ($this->configurationProvider->getFilterKeys() as $filterKey) { |
|
| 22 | 1 | $chain->append($this->buildFilter($filterKey)); |
|
| 23 | } |
||
| 24 | 1 | return $chain; |
|
| 25 | } |
||
| 52 | } |