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