1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-11 13:42:49 +01:00
invoiceninja/app/Events/Payment/Methods/MethodDeleted.php

45 lines
1.1 KiB
PHP
Raw Normal View History

<?php
namespace App\Events\Payment\Methods;
use App\Models\ClientGatewayToken;
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 MethodDeleted
{
use Dispatchable, InteractsWithSockets, SerializesModels;
/**
* @var ClientGatewayToken
*/
private $payment_method;
2020-06-30 01:35:17 +02:00
public $company;
/**
* Create a new event instance.
*
* @param ClientGatewayToken $payment_method
*/
2020-06-30 01:35:17 +02:00
public function __construct(ClientGatewayToken $payment_method, $company)
{
$this->payment_method = $payment_method;
2020-06-30 01:35:17 +02: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');
}
}