| 1 | <?php |
||
| 8 | class NotificationWasDismissed extends Event |
||
| 9 | { |
||
| 10 | use SerializesModels; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * @var Notification |
||
| 14 | */ |
||
| 15 | public $notification; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * Create a new event instance. |
||
| 19 | * |
||
| 20 | * @param Notification $notification |
||
| 21 | */ |
||
| 22 | public function __construct(Notification $notification) |
||
| 26 | } |
||
| 27 |