1 | <?php |
||
21 | class ClientOwnerChangedEvent extends Event |
||
22 | { |
||
23 | private $clientId; |
||
24 | private $newOwnerId; |
||
25 | |||
26 | public function __construct(ClientId $clientId, UserAccountId $newOwnerId) |
||
31 | |||
32 | public static function getSchema(): string |
||
36 | |||
37 | public function getDomainId(): Id |
||
41 | |||
42 | public function getClientId(): ClientId |
||
46 | |||
47 | public function getNewOwnerId(): UserAccountId |
||
51 | |||
52 | public function getPayload() |
||
58 | } |
||
59 |