| 1 | <?php declare(strict_types=1); |
||
| 28 | class AnyOf implements AnyOfInterface |
||
| 29 | { |
||
| 30 | /** |
||
| 31 | * @var AllOfInterface[] |
||
| 32 | */ |
||
| 33 | private $allOffs; |
||
| 34 | |||
| 35 | 30 | /** |
|
| 36 | * @param AllOfInterface[] $allOffs |
||
| 37 | 30 | */ |
|
| 38 | public function __construct(array $allOffs) |
||
| 44 | |||
| 45 | 30 | /** |
|
| 46 | * @inheritdoc |
||
| 47 | 30 | */ |
|
| 48 | public function getAllOfs(): array |
||
| 52 | } |
||
| 53 |