1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-15 07:33:04 +01:00
invoiceninja/app/Events/Payment/PaymentWasUpdated.php

59 lines
1.3 KiB
PHP
Raw Normal View History

2020-07-17 03:28:54 +02:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
2020-07-17 03:28:54 +02:00
*
* @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)
2020-07-17 03:28:54 +02:00
*
2021-06-16 08:58:16 +02:00
* @license https://www.elastic.co/licensing/elastic-license
2020-07-17 03:28:54 +02:00
*/
namespace App\Events\Payment;
2024-10-18 18:33:30 +02:00
use App\Models\BaseModel;
2020-07-17 03:28:54 +02:00
use App\Models\Company;
use App\Models\Payment;
2024-10-18 18:33:30 +02:00
use App\Utils\Traits\Invoice\Broadcasting\DefaultResourceBroadcast;
2024-10-17 17:45:50 +02:00
use Illuminate\Broadcasting\InteractsWithSockets;
use Illuminate\Contracts\Broadcasting\ShouldBroadcast;
2020-07-17 03:28:54 +02:00
use Illuminate\Queue\SerializesModels;
/**
* Class PaymentWasUpdated.
*/
2024-10-17 17:45:50 +02:00
class PaymentWasUpdated implements ShouldBroadcast
2020-07-17 03:28:54 +02:00
{
2024-10-18 18:33:30 +02:00
use SerializesModels, InteractsWithSockets, DefaultResourceBroadcast;
2020-07-17 03:28:54 +02:00
/**
* @var Payment
*/
public $payment;
public $company;
public $event_vars;
2020-07-17 03:28:54 +02:00
/**
* Create a new event instance.
*
* @param Payment $payment
2020-10-28 11:10:49 +01:00
* @param Company $company
* @param array $event_vars
2020-07-17 03:28:54 +02:00
*/
public function __construct(Payment $payment, Company $company, array $event_vars)
{
$this->payment = $payment;
$this->company = $company;
$this->event_vars = $event_vars;
2024-10-17 17:45:50 +02:00
$this->dontBroadcastToCurrentUser();
}
2024-10-18 18:33:30 +02:00
public function broadcastModel(): BaseModel
2024-10-17 17:45:50 +02:00
{
2024-10-18 18:33:30 +02:00
return $this->payment;
2020-07-17 03:28:54 +02:00
}
}