Page MenuHomeDevCentral

NotificationEvent.php
No OneTemporary

NotificationEvent.php

<?php
namespace Nasqueron\Notifications\Events;
use Nasqueron\Notifications\Events\Event;
use Nasqueron\Notifications\Notifications\Notification;
use Illuminate\Queue\SerializesModels;
class NotificationEvent extends Event {
use SerializesModels;
/**
* @var Notification
*/
public $notification;
/**
* Creates a new event instance.
*
* @param Notification $notification the notification
*/
public function __construct(Notification $notification) {
$this->notification = $notification;
}
}

File Metadata

Mime Type
text/x-php
Expires
Tue, May 5, 17:17 (2 h, 8 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3666971
Default Alt Text
NotificationEvent.php (557 B)

Event Timeline