| Total Complexity | 5 |
| Total Lines | 33 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | class Chain extends \ArrayIterator implements FilterInterface |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * Needs to be called due to an extbase bug. |
||
| 13 | * Hides optional parameters of parent constructor. |
||
| 14 | */ |
||
| 15 | 4 | public function __construct() |
|
| 16 | { |
||
| 17 | 4 | parent::__construct(); |
|
| 18 | 4 | } |
|
| 19 | |||
| 20 | /** |
||
| 21 | * @param \Aoe\Asdis\System\Uri\Filter\FilterInterface $filter |
||
| 22 | */ |
||
| 23 | 2 | public function append($filter) |
|
| 26 | 2 | } |
|
| 27 | |||
| 28 | /** |
||
| 29 | * @param array $paths Array of paths. |
||
| 30 | * @return array Valid paths. |
||
| 31 | */ |
||
| 32 | 2 | public function filter(array $paths) |
|
| 42 | } |
||
| 43 | |||
| 44 | } |