1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 17:01:33 +02:00
invoiceninja/app/Events/Client/ClientWasArchived.php

58 lines
1.3 KiB
PHP
Raw Normal View History

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) 2020. Invoice Ninja LLC (https://invoiceninja.com)
2019-05-11 05:32:07 +02:00
*
* @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;
2020-06-30 01:35:17 +02:00
use App\Models\Company;
2019-04-20 00:27:37 +02:00
use Illuminate\Broadcasting\Channel;
use Illuminate\Broadcasting\InteractsWithSockets;
2020-06-30 01:35:17 +02:00
use Illuminate\Broadcasting\PresenceChannel;
use Illuminate\Broadcasting\PrivateChannel;
2019-04-20 00:27:37 +02:00
use Illuminate\Contracts\Broadcasting\ShouldBroadcast;
2020-06-30 01:35:17 +02:00
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Queue\SerializesModels;
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;
2020-06-30 01:35:17 +02:00
public $company;
2019-04-19 10:49:14 +02:00
/**
* Create a new event instance.
*
* @param Client $client
*/
2020-06-30 01:35:17 +02:00
public function __construct(Client $client, Company $company)
2019-04-19 10:49:14 +02:00
{
$this->client = $client;
2020-06-30 01:35:17 +02:00
$this->company = $company;
2019-04-19 10:49:14 +02:00
}
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
}