| 1 | <?php |
||
| 13 | class QueryCriteriaCollection implements QueryCriteriaCollectionInterface |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * @var QueryCriteriaInterface[] |
||
| 17 | */ |
||
| 18 | protected $queryCriteria; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @param QueryCriteriaInterface[] $providedCriteria |
||
| 22 | */ |
||
| 23 | 8 | public function __construct(array $providedCriteria = []) |
|
| 33 | |||
| 34 | /** |
||
| 35 | * @inheritdoc |
||
| 36 | */ |
||
| 37 | 2 | public function getApplicableCriteria() |
|
| 46 | |||
| 47 | /** |
||
| 48 | * {@inheritDoc} |
||
| 49 | */ |
||
| 50 | 6 | public function getCriteria() |
|
| 54 | |||
| 55 | /** |
||
| 56 | * {@inheritDoc} |
||
| 57 | */ |
||
| 58 | 5 | public function addQueryCriteria(QueryCriteriaInterface $queryCriteria) |
|
| 64 | } |
||
| 65 |