1 | <?php |
||
8 | class NotificationFailed extends AbstractEvent |
||
9 | { |
||
10 | /** |
||
11 | * @var Notification |
||
12 | */ |
||
13 | public $notification; |
||
14 | /** |
||
15 | * @var int |
||
16 | */ |
||
17 | public $number; |
||
18 | |||
19 | /** |
||
20 | * Create a new NotificationSent. |
||
21 | * |
||
22 | * @param Notification $notification |
||
23 | * @param int $number |
||
24 | */ |
||
25 | 4 | public function __construct(Notification $notification, $number = 1) |
|
30 | } |
||
31 |