mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 05:32:39 +01:00
55 lines
1.2 KiB
PHP
55 lines
1.2 KiB
PHP
|
<?php
|
||
|
/**
|
||
|
* Invoice Ninja (https://invoiceninja.com)
|
||
|
*
|
||
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
||
|
*
|
||
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
||
|
*
|
||
|
* @license https://opensource.org/licenses/AAL
|
||
|
*/
|
||
|
|
||
|
namespace App\Events\Document;
|
||
|
|
||
|
use App\Models\Document;
|
||
|
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 DocumentWasArchived.
|
||
|
*/
|
||
|
class DocumentWasArchived
|
||
|
{
|
||
|
use Dispatchable, InteractsWithSockets, SerializesModels;
|
||
|
|
||
|
/**
|
||
|
* @var Document
|
||
|
*/
|
||
|
public $document;
|
||
|
|
||
|
/**
|
||
|
* Create a new event instance.
|
||
|
*
|
||
|
* @param Document $document
|
||
|
*/
|
||
|
public function __construct(Document $document)
|
||
|
{
|
||
|
$this->document = $document;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Get the channels the event should broadcast on.
|
||
|
*
|
||
|
* @return \Illuminate\Broadcasting\Channel|array
|
||
|
*/
|
||
|
public function broadcastOn()
|
||
|
{
|
||
|
return new PrivateChannel('channel-name');
|
||
|
}
|
||
|
}
|