| 1 | <?php |
||
| 19 | class MemberRemoved implements DomainEvent |
||
| 20 | { |
||
| 21 | private $organizationId; |
||
| 22 | private $memberId; |
||
| 23 | private $occurredOn; |
||
| 24 | |||
| 25 | public function __construct(OrganizationId $organizationId, MemberId $memberId) |
||
| 31 | |||
| 32 | public function organizationId() : OrganizationId |
||
| 36 | |||
| 37 | public function memberId() : MemberId |
||
| 41 | |||
| 42 | public function occurredOn() : \DateTimeInterface |
||
| 46 | } |
||
| 47 |