| 1 | <?php |
||
| 7 | class NotificationFailed |
||
| 8 | { |
||
| 9 | private $notifiable; |
||
| 10 | |||
| 11 | private $notification; |
||
| 12 | |||
| 13 | private $exception; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * NotificationFailed constructor. |
||
| 17 | * |
||
| 18 | * @param $notifiable |
||
| 19 | * @param Notification $notification |
||
| 20 | * @param \Exception $exception |
||
| 21 | */ |
||
| 22 | public function __construct($notifiable, Notification $notification, \Exception $exception) |
||
| 28 | } |
||
| 29 |