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

52 lines
1.0 KiB
PHP
Raw Normal View History

<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2023-01-28 23:21:40 +01:00
* @copyright Copyright (c) 2023. 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\Invoice;
use App\Models\Company;
use App\Models\Invoice;
2021-01-24 21:55:04 +01:00
use App\Models\Payment;
use Illuminate\Queue\SerializesModels;
/**
* Class InvoiceWasPaid.
*/
class InvoiceWasPaid
{
use SerializesModels;
/**
* @var Invoice
*/
public $invoice;
2021-01-24 21:55:04 +01:00
public $payment;
public $company;
2020-07-08 14:02:16 +02:00
public $event_vars;
/**
* Create a new event instance.
*
* @param Invoice $invoice
2020-10-28 11:10:49 +01:00
* @param Company $company
* @param array $event_vars
*/
2021-01-24 21:55:04 +01:00
public function __construct(Invoice $invoice, Payment $payment, Company $company, array $event_vars)
{
$this->invoice = $invoice;
2021-01-24 21:55:04 +01:00
$this->payment = $payment;
$this->company = $company;
2020-07-08 14:02:16 +02:00
$this->event_vars = $event_vars;
}
}