1 | <?php |
||
7 | class NotificationFailedEvent extends Event |
||
8 | { |
||
9 | const NAME = 'notification.failed'; |
||
10 | public $notification; |
||
11 | public $data = []; |
||
12 | |||
13 | public function __construct($notification, $data = []) |
||
18 | |||
19 | /** |
||
20 | * @return mixed |
||
21 | */ |
||
22 | public function getNotification() |
||
26 | |||
27 | /** |
||
28 | * @return array |
||
29 | */ |
||
30 | public function getData() |
||
34 | } |
||
35 |