2020-03-09 21:05:23 +01:00
|
|
|
<?php
|
2020-07-08 14:02:16 +02:00
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2020-07-08 14:02:16 +02:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2021-01-03 22:54:54 +01:00
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
2020-07-08 14:02:16 +02:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
2020-03-09 21:05:23 +01:00
|
|
|
|
|
|
|
namespace App\Events\Company;
|
|
|
|
|
|
|
|
use App\Models\Company;
|
|
|
|
use Illuminate\Broadcasting\Channel;
|
|
|
|
use Illuminate\Broadcasting\InteractsWithSockets;
|
|
|
|
use Illuminate\Broadcasting\PrivateChannel;
|
|
|
|
use Illuminate\Foundation\Events\Dispatchable;
|
|
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
|
2020-07-08 14:02:16 +02:00
|
|
|
class CompanyDocumentsDeleted
|
2020-03-09 21:05:23 +01:00
|
|
|
{
|
|
|
|
use Dispatchable, InteractsWithSockets, SerializesModels;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var Company
|
|
|
|
*/
|
|
|
|
public $company;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new event instance.
|
|
|
|
*
|
|
|
|
* @param Company $company
|
|
|
|
*/
|
|
|
|
public function __construct(Company $company)
|
|
|
|
{
|
|
|
|
$this->company = $company;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the channels the event should broadcast on.
|
|
|
|
*
|
2020-10-28 11:10:49 +01:00
|
|
|
* @return Channel|array
|
2020-03-09 21:05:23 +01:00
|
|
|
*/
|
|
|
|
public function broadcastOn()
|
|
|
|
{
|
|
|
|
return new PrivateChannel('channel-name');
|
|
|
|
}
|
|
|
|
}
|