2020-05-29 23:20:39 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Events;
|
|
|
|
|
|
|
|
use App\Application;
|
2020-10-21 00:29:50 +00:00
|
|
|
use Illuminate\Broadcasting\Channel;
|
2020-05-29 23:20:39 +00:00
|
|
|
use Illuminate\Broadcasting\InteractsWithSockets;
|
2020-10-21 00:29:50 +00:00
|
|
|
use Illuminate\Broadcasting\PresenceChannel;
|
|
|
|
use Illuminate\Broadcasting\PrivateChannel;
|
|
|
|
use Illuminate\Contracts\Broadcasting\ShouldBroadcast;
|
2020-05-29 23:20:39 +00:00
|
|
|
use Illuminate\Foundation\Events\Dispatchable;
|
|
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
|
|
|
|
class ApplicationDeniedEvent
|
|
|
|
{
|
|
|
|
use Dispatchable, InteractsWithSockets, SerializesModels;
|
|
|
|
|
|
|
|
public $application;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new event instance.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function __construct(Application $application)
|
|
|
|
{
|
|
|
|
$this->application = $application;
|
|
|
|
}
|
2020-10-21 00:29:50 +00:00
|
|
|
|
2020-05-29 23:20:39 +00:00
|
|
|
}
|