1 | <?php |
||
6 | class AccountLinkingEvent extends AbstractCallbackEvent |
||
7 | { |
||
8 | |||
9 | /** |
||
10 | * @var \Kerox\Messenger\Model\Callback\AccountLinking |
||
11 | */ |
||
12 | protected $accountLinking; |
||
13 | |||
14 | /** |
||
15 | * AccountLinkingEvent constructor. |
||
16 | * |
||
17 | * @param string $senderId |
||
18 | * @param string $recipientId |
||
19 | * @param int $timestamp |
||
20 | * @param \Kerox\Messenger\Model\Callback\AccountLinking $accountLinking |
||
21 | */ |
||
22 | public function __construct($senderId, $recipientId, $timestamp, AccountLinking $accountLinking) |
||
28 | |||
29 | /** |
||
30 | * @return \Kerox\Messenger\Model\Callback\AccountLinking |
||
31 | */ |
||
32 | public function getAccountLinking(): AccountLinking |
||
36 | } |