Файл: vendor/laravel/framework/src/Illuminate/Notifications/Events/NotificationFailed.php
Строк: 41
<?php
namespace IlluminateNotificationsEvents;
use IlluminateBusQueueable;
use IlluminateQueueSerializesModels;
class NotificationFailed
{
use Queueable, SerializesModels;
/**
* Create a new event instance.
*
* @param mixed $notifiable The notifiable entity who received the notification.
* @param IlluminateNotificationsNotification $notification The notification instance.
* @param string $channel The channel name.
* @param array $data The data needed to process this failure.
*/
public function __construct(
public $notifiable,
public $notification,
public $channel,
public $data = [],
) {
}
}