for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace NotificationChannels\Infobip\Events;
use Illuminate\Notifications\Notification;
class NotificationFailed
{
private $notifiable;
private $notification;
private $exception;
/**
* NotificationFailed constructor.
*
* @param $notifiable
* @param Notification $notification
* @param \Exception $exception
*/
public function __construct($notifiable, Notification $notification, \Exception $exception)
$this->notifiable = $notifiable;
$this->notification = $notification;
$this->exception = $exception;
}