for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Hechoenlaravel\JarvisFoundation\Notifications\SendAppNotification\Events;
use Hechoenlaravel\JarvisFoundation\Events\Event;
use Hechoenlaravel\JarvisFoundation\Notifications\SendAppNotification\Notification;
/**
* Class NotificationWasSent
* @package Hechoenlaravel\JarvisFoundation\Notifications\SendAppNotification\Events
*/
class NotificationWasSent extends Event
{
* @var Notification
public $notification;
* @param Notification $notification
public function __construct(Notification $notification)
$this->notification = $notification;
}