1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 00:41:34 +02:00
invoiceninja/app/Events/Account/AccountCreated.php

60 lines
1.3 KiB
PHP
Raw Normal View History

<?php
2019-05-11 05:32:07 +02:00
/**
* Invoice Ninja (https://invoiceninja.com)
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
2019-05-11 05:32:07 +02:00
*
* @license https://opensource.org/licenses/AAL
*/
2018-10-24 05:50:15 +02:00
namespace App\Events\Account;
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;
2019-01-27 00:22:57 +01:00
/**
* Class AccountCreated
* @package App\Events\Account
*/
2018-10-24 05:50:15 +02:00
class AccountCreated
{
use Dispatchable, InteractsWithSockets, SerializesModels;
2019-01-27 00:22:57 +01:00
/**
* @var
*/
public $user;
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.
*
* @return void
*/
2020-07-08 14:02:16 +02:00
public function __construct($user, $company, $event_vars)
{
$this->user = $user;
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.
*
* @return \Illuminate\Broadcasting\Channel|array
*/
public function broadcastOn()
{
return new PrivateChannel('channel-name');
}
}