32 lines
706 B
PHP
32 lines
706 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Events;
|
||
|
|
||
|
use App\Application;
|
||
|
use Illuminate\Broadcasting\Channel;
|
||
|
use Illuminate\Broadcasting\InteractsWithSockets;
|
||
|
use Illuminate\Broadcasting\PresenceChannel;
|
||
|
use Illuminate\Broadcasting\PrivateChannel;
|
||
|
use Illuminate\Contracts\Broadcasting\ShouldBroadcast;
|
||
|
use Illuminate\Foundation\Events\Dispatchable;
|
||
|
use Illuminate\Queue\SerializesModels;
|
||
|
|
||
|
class ApplicationApprovedEvent
|
||
|
{
|
||
|
use Dispatchable, InteractsWithSockets, SerializesModels;
|
||
|
|
||
|
public $application;
|
||
|
|
||
|
/**
|
||
|
* Create a new event instance.
|
||
|
*
|
||
|
* @param Application $application
|
||
|
*/
|
||
|
public function __construct(Application $application)
|
||
|
{
|
||
|
$this->application = $application;
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|