1 | <?php |
||
14 | class ChainFilter implements NavigationFilterInterface |
||
15 | { |
||
16 | /** @var NavigationFilterInterface[] */ |
||
17 | private $filters = []; |
||
18 | |||
19 | public function __construct(array $filters) |
||
23 | |||
24 | public function add(NavigationFilterInterface $filter): void |
||
28 | |||
29 | public function filterItems(MutableContainerInterface $container): MutableContainerInterface |
||
38 | } |
||
39 |