1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00
invoiceninja/app/Events/User/UserWasDeleted.php
2019-04-25 20:21:07 +10:00

52 lines
1.0 KiB
PHP

<?php
namespace App\Events\User;
use Illuminate\Broadcasting\Channel;
use Illuminate\Queue\SerializesModels;
use Illuminate\Broadcasting\PrivateChannel;
use Illuminate\Broadcasting\PresenceChannel;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Broadcasting\InteractsWithSockets;
use Illuminate\Contracts\Broadcasting\ShouldBroadcast;
/**
* Class UserWasDeleted
* @package App\Events\User
*/
class UserWasDeleted
{
use Dispatchable, InteractsWithSockets, SerializesModels;
/**
* @var $user
*/
public $user;
/**
* @var $company
*/
public $company;
/**
* Create a new event instance.
*
* @return void
*/
public function __construct($user, $company)
{
$this->user = $user;
$this->company = $company;
}
/**
* Get the channels the event should broadcast on.
*
* @return \Illuminate\Broadcasting\Channel|array
*/
public function broadcastOn()
{
return new PrivateChannel('channel-name');
}
}