2019-04-19 10:49:14 +02:00
|
|
|
<?php
|
2019-05-11 05:32:07 +02:00
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2019. Invoice Ninja LLC (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
2019-04-19 10:49:14 +02:00
|
|
|
|
2019-04-19 11:09:55 +02:00
|
|
|
namespace App\Events\Client;
|
2019-04-19 10:49:14 +02:00
|
|
|
|
|
|
|
use App\Models\Client;
|
2019-04-20 00:27:37 +02:00
|
|
|
use Illuminate\Broadcasting\Channel;
|
2019-04-19 10:49:14 +02:00
|
|
|
use Illuminate\Queue\SerializesModels;
|
2019-04-20 00:27:37 +02:00
|
|
|
use Illuminate\Broadcasting\PrivateChannel;
|
|
|
|
use Illuminate\Broadcasting\PresenceChannel;
|
|
|
|
use Illuminate\Foundation\Events\Dispatchable;
|
|
|
|
use Illuminate\Broadcasting\InteractsWithSockets;
|
|
|
|
use Illuminate\Contracts\Broadcasting\ShouldBroadcast;
|
2019-04-19 10:49:14 +02:00
|
|
|
/**
|
|
|
|
* Class ClientWasArchived.
|
|
|
|
*/
|
2019-04-20 00:27:37 +02:00
|
|
|
class ClientWasArchived
|
2019-04-19 10:49:14 +02:00
|
|
|
{
|
2019-04-20 00:27:37 +02:00
|
|
|
use Dispatchable, InteractsWithSockets, SerializesModels;
|
2019-04-19 10:49:14 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @var Client
|
|
|
|
*/
|
|
|
|
public $client;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new event instance.
|
|
|
|
*
|
|
|
|
* @param Client $client
|
|
|
|
*/
|
|
|
|
public function __construct(Client $client)
|
|
|
|
{
|
|
|
|
$this->client = $client;
|
|
|
|
}
|
2019-04-20 00:27:37 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the channels the event should broadcast on.
|
|
|
|
*
|
|
|
|
* @return \Illuminate\Broadcasting\Channel|array
|
|
|
|
*/
|
|
|
|
public function broadcastOn()
|
|
|
|
{
|
|
|
|
return new PrivateChannel('channel-name');
|
|
|
|
}
|
2019-04-19 10:49:14 +02:00
|
|
|
}
|