1 | <?php |
||
19 | abstract class AbstractQuantifierPredicate implements PredicateDecorator |
||
20 | { |
||
21 | protected $predicates; |
||
22 | |||
23 | /** |
||
24 | * @param Predicate ...$predicates The predicates to check |
||
25 | */ |
||
26 | 29 | public function __construct(Predicate ...$predicates) |
|
30 | |||
31 | /** |
||
32 | * Gets the predicates. |
||
33 | * |
||
34 | * @return Predicate[] The predicates being decorated. |
||
35 | */ |
||
36 | 4 | public function getPredicates() : array |
|
40 | } |
||
41 |