1 | <?php |
||
9 | final class NestedCriteriaConfigurator implements CriteriaConfiguratorInterface |
||
10 | { |
||
11 | /** @var CriteriaConfiguratorInterface[] */ |
||
12 | private $filters = []; |
||
13 | |||
14 | /** |
||
15 | * ChainFilter constructor. |
||
16 | * |
||
17 | * @param CriteriaConfiguratorInterface[] $filters |
||
18 | */ |
||
19 | public function __construct(array $filters) |
||
23 | |||
24 | /** {@inheritdoc} */ |
||
25 | public function configure($fqcn, Criteria $criteria, $arguments) |
||
40 | } |
||
41 |