1 | <?php |
||
4 | class RawEvent extends AbstractCallbackEvent |
||
5 | { |
||
6 | |||
7 | /** |
||
8 | * @var array |
||
9 | */ |
||
10 | protected $raw; |
||
11 | |||
12 | /** |
||
13 | * RawEvent constructor. |
||
14 | * |
||
15 | * @param string $senderId |
||
16 | * @param string $recipientId |
||
17 | * @param array $raw |
||
18 | */ |
||
19 | public function __construct(string $senderId, string $recipientId, array $raw) |
||
25 | |||
26 | /** |
||
27 | * @return array |
||
28 | */ |
||
29 | public function getRaw(): array |
||
33 | } |