1 | <?php declare(strict_types=1); |
||
27 | class AllOf implements AllOfInterface |
||
28 | { |
||
29 | /** |
||
30 | * @var array |
||
31 | */ |
||
32 | private $pairs; |
||
33 | |||
34 | 30 | /** |
|
35 | * @param array $pairs |
||
36 | 30 | */ |
|
37 | public function __construct(array $pairs) |
||
43 | |||
44 | 30 | /** |
|
45 | * @inheritdoc |
||
46 | 30 | */ |
|
47 | public function getPairs(): array |
||
51 | } |
||
52 |