invoiceninja/app/Events/User/UserWasCreated.php

61 lines
1.3 KiB
PHP
Raw Normal View History

<?php
2019-05-11 13:32:07 +10:00
/**
* Invoice Ninja (https://invoiceninja.com)
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2019. Invoice Ninja LLC (https://invoiceninja.com)
*
* @license https://opensource.org/licenses/AAL
*/
2018-10-24 14:50:15 +11:00
namespace App\Events\User;
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 10:22:57 +11:00
/**
2019-04-19 19:09:55 +10:00
* Class UserWasCreated
2019-01-27 10:22:57 +11:00
* @package App\Events\User
*/
2019-04-19 19:09:55 +10:00
class UserWasCreated
{
use Dispatchable, InteractsWithSockets, SerializesModels;
2019-01-27 10:22:57 +11:00
/**
2019-04-18 15:01:40 +10:00
* @var $user
2019-01-27 10:22:57 +11:00
*/
public $user;
2019-04-18 15:01:40 +10:00
/**
* @var $company
*/
public $company;
/**
* Create a new event instance.
*
* @return void
*/
2019-04-18 15:01:40 +10:00
public function __construct($user, $company)
{
$this->user = $user;
2019-04-18 15:01:40 +10:00
$this->company = $company;
}
/**
* Get the channels the event should broadcast on.
*
* @return \Illuminate\Broadcasting\Channel|array
*/
public function broadcastOn()
{
return new PrivateChannel('channel-name');
}
}