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 NotificationWasReaded extends Event
{
/**
* @var Notification
*/
public $notification;
* @param Notification $notification
public function __construct(Notification $notification)
$this->notification = $notification;
}