2019-07-14 11:34:49 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2020-01-07 01:13:47 +01:00
|
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-07-14 11:34:49 +02:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Events\Contact;
|
|
|
|
|
|
|
|
use App\Models\ClientContact;
|
|
|
|
use Illuminate\Broadcasting\Channel;
|
|
|
|
use Illuminate\Broadcasting\InteractsWithSockets;
|
|
|
|
use Illuminate\Broadcasting\PresenceChannel;
|
|
|
|
use Illuminate\Broadcasting\PrivateChannel;
|
|
|
|
use Illuminate\Contracts\Broadcasting\ShouldBroadcast;
|
|
|
|
use Illuminate\Foundation\Events\Dispatchable;
|
|
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class UserLoggedIn
|
|
|
|
* @package App\Events\User
|
|
|
|
*/
|
|
|
|
class ContactLoggedIn
|
|
|
|
{
|
|
|
|
use Dispatchable, InteractsWithSockets, SerializesModels;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var $client_contact
|
|
|
|
*/
|
|
|
|
public $client_contact;
|
|
|
|
|
2020-06-30 01:35:17 +02:00
|
|
|
public $company;
|
|
|
|
|
2020-07-08 14:02:16 +02:00
|
|
|
public $event_vars;
|
2019-07-14 11:34:49 +02:00
|
|
|
/**
|
|
|
|
* Create a new event instance.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2020-07-08 14:02:16 +02:00
|
|
|
public function __construct(ClientContact $client_contact, $company, $event_vars)
|
2019-07-14 11:34:49 +02:00
|
|
|
{
|
|
|
|
$this->client_contact = $client_contact;
|
2020-06-30 01:35:17 +02:00
|
|
|
$this->company = $company;
|
2020-07-08 14:02:16 +02:00
|
|
|
$this->event_vars = $event_vars;
|
2019-07-14 11:34:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the channels the event should broadcast on.
|
|
|
|
*
|
|
|
|
* @return \Illuminate\Broadcasting\Channel|array
|
|
|
|
*/
|
|
|
|
public function broadcastOn()
|
|
|
|
{
|
|
|
|
return new PrivateChannel('channel-name');
|
|
|
|
}
|
|
|
|
}
|