| 1 | <?php |
||
| 7 | class MessageDeliveryEvent extends CallbackEvent |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @var Delivery |
||
| 11 | */ |
||
| 12 | private $delivery; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @param string $senderId |
||
| 16 | * @param string $recipientId |
||
| 17 | * @param Delivery $delivery |
||
| 18 | */ |
||
| 19 | 6 | public function __construct($senderId, $recipientId, Delivery $delivery) |
|
| 24 | |||
| 25 | /** |
||
| 26 | * @return Delivery |
||
| 27 | */ |
||
| 28 | 1 | public function getDelivery() |
|
| 32 | |||
| 33 | /** |
||
| 34 | * @return string |
||
| 35 | */ |
||
| 36 | 1 | public function getType() |
|
| 40 | } |
||
| 41 |