| 1 | <?php |
||
| 19 | class AsyncEvent implements AsyncDomainEvent |
||
| 20 | { |
||
| 21 | private $name; |
||
| 22 | private $occurredOn; |
||
| 23 | private $values; |
||
| 24 | |||
| 25 | public function __construct(string $name, \DateTimeInterface $occurredOn, array $values) |
||
| 31 | |||
| 32 | public function name() : string |
||
| 36 | |||
| 37 | public function values() : array |
||
| 41 | |||
| 42 | public function occurredOn() : \DateTimeInterface |
||
| 46 | } |
||
| 47 |