Файл: vendor/laravel/framework/src/Illuminate/Notifications/Events/NotificationSending.php
Строк: 42
<?php
namespace IlluminateNotificationsEvents;
use IlluminateBusQueueable;
use IlluminateQueueSerializesModels;
class NotificationSending
{
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.
*/
public function __construct(
public $notifiable,
public $notification,
public $channel,
) {
}
}