1 | <?php |
||
11 | abstract class AbstractNotificationEvent extends Event implements NotificationEventInterface |
||
12 | { |
||
13 | |||
14 | /** |
||
15 | * The notification request payload data. |
||
16 | * |
||
17 | * @var NotificationPayloadInterface |
||
18 | */ |
||
19 | protected $payloadData; |
||
20 | |||
21 | /** |
||
22 | * {@inheritdoc} |
||
23 | */ |
||
24 | 36 | public function getPayloadData() |
|
28 | |||
29 | /** |
||
30 | * {@inheritdoc} |
||
31 | */ |
||
32 | 36 | public function setPayloadData(NotificationPayloadInterface $data) |
|
38 | } |
||
39 |