1 | <?php declare(strict_types = 1); |
||
8 | abstract class AbstractMutationResponse implements MutationResponse |
||
9 | { |
||
10 | /** @var DomainEventCollection */ |
||
11 | protected $domainEvents; |
||
12 | |||
13 | /** @var MutationErrorCollection */ |
||
14 | protected $errors; |
||
15 | |||
16 | 9 | public function getDomainEvents(): DomainEventCollection |
|
20 | |||
21 | 9 | public function getErrors(): MutationErrorCollection |
|
25 | } |
||
26 |