| 1 | <?php |
||
| 7 | final class ChainCriteriaConfigurator implements CriteriaConfiguratorInterface |
||
| 8 | { |
||
| 9 | /** @var CriteriaConfiguratorInterface[] */ |
||
| 10 | private $filters = []; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * ChainFilter constructor. |
||
| 14 | * |
||
| 15 | * @param CriteriaConfiguratorInterface[] $filters |
||
| 16 | */ |
||
| 17 | public function __construct(array $filters) |
||
| 21 | |||
| 22 | /** {@inheritdoc} */ |
||
| 23 | public function configure($fqcn, Criteria $criteria, $arguments) |
||
| 29 | } |
||
| 30 |