2020-06-22 00:34:02 +02:00
|
|
|
<?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
|
|
|
|
*/
|
|
|
|
|
2020-06-22 13:16:38 +02:00
|
|
|
namespace App\Events\Design;
|
2020-06-22 00:34:02 +02:00
|
|
|
|
2020-06-22 13:16:38 +02:00
|
|
|
use App\Models\Design;
|
2020-06-22 00:34:02 +02:00
|
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class DesignWasUpdated.
|
|
|
|
*/
|
|
|
|
class DesignWasUpdated
|
|
|
|
{
|
|
|
|
use SerializesModels;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var Design
|
|
|
|
*/
|
|
|
|
public $design;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new event instance.
|
|
|
|
*
|
|
|
|
* @param Design $design
|
|
|
|
*/
|
|
|
|
public function __construct(Design $design)
|
|
|
|
{
|
|
|
|
$this->design = $design;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the channels the event should broadcast on.
|
|
|
|
*
|
|
|
|
* @return \Illuminate\Broadcasting\Channel|array
|
|
|
|
*/
|
|
|
|
public function broadcastOn()
|
|
|
|
{
|
|
|
|
return new PrivateChannel('channel-name');
|
|
|
|
}
|
2020-06-22 13:16:38 +02:00
|
|
|
|
2020-06-22 00:34:02 +02:00
|
|
|
}
|