1 | <?php |
||
10 | class ResultCollection implements ResultInterface |
||
11 | { |
||
12 | /** |
||
13 | * @var bool |
||
14 | */ |
||
15 | private $isValid = true; |
||
16 | |||
17 | /** |
||
18 | * @var string[] |
||
19 | */ |
||
20 | private $messages = []; |
||
21 | |||
22 | 184 | public function __construct(ResultInterface ...$results) |
|
32 | |||
33 | 183 | public function isValid(): bool |
|
37 | |||
38 | 56 | public function getMessage(): string |
|
42 | } |
||
43 |