1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00
invoiceninja/app/Events/Contact/ContactLoggedIn.php

59 lines
1.2 KiB
PHP
Raw Normal View History

<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2024-04-12 06:15:41 +02:00
* @copyright Copyright (c) 2024. Invoice Ninja LLC (https://invoiceninja.com)
*
2021-06-16 08:58:16 +02:00
* @license https://www.elastic.co/licensing/elastic-license
*/
namespace App\Events\Contact;
use App\Models\ClientContact;
use Illuminate\Broadcasting\Channel;
use Illuminate\Broadcasting\InteractsWithSockets;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Queue\SerializesModels;
/**
* Class UserLoggedIn.
*/
class ContactLoggedIn
{
2024-01-14 05:05:00 +01:00
use Dispatchable;
use InteractsWithSockets;
use SerializesModels;
public $client_contact;
2020-06-30 01:35:17 +02:00
public $company;
2020-07-08 14:02:16 +02:00
public $event_vars;
/**
* Create a new event instance.
*
2020-10-28 11:10:49 +01:00
* @param ClientContact $client_contact
* @param $company
* @param $event_vars
*/
2020-07-08 14:02:16 +02:00
public function __construct(ClientContact $client_contact, $company, $event_vars)
{
$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;
}
/**
* Get the channels the event should broadcast on.
*
2020-10-28 11:10:49 +01:00
* @return Channel|array
*/
2023-10-26 04:57:44 +02:00
public function broadcastOn()
{
return [];
2023-10-26 04:57:44 +02:00
}
}