| Total Complexity | 4 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | class ChainFilter implements NavigationFilterInterface |
||
| 15 | { |
||
| 16 | /** @var NavigationFilterInterface[] */ |
||
| 17 | private $filters = []; |
||
| 18 | |||
| 19 | public function __construct(array $filters) |
||
| 20 | { |
||
| 21 | array_map([$this, 'add'], $filters); |
||
| 22 | } |
||
| 23 | |||
| 24 | public function add(NavigationFilterInterface $filter): void |
||
| 27 | } |
||
| 28 | |||
| 29 | public function filterItems(MutableContainerInterface $container): MutableContainerInterface |
||
| 39 |