1 | <?php |
||
20 | class AllPredicate extends AbstractQuantifierPredicate |
||
21 | { |
||
22 | /** |
||
23 | * Evaluates the predicate returning true if all predicates return true. |
||
24 | * |
||
25 | * @param mixed $value The input value. |
||
26 | * @return bool true if all decorated predicates return true. |
||
27 | */ |
||
28 | 6 | public function __invoke($value) : bool |
|
38 | } |
||
39 |