invoiceninja/app/Events/Invoice/InvoiceWasPaid.php

52 lines
1 KiB
PHP
Raw Normal View History

<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
*
2021-06-16 16:58:16 +10:00
* @license https://www.elastic.co/licensing/elastic-license
*/
namespace App\Events\Invoice;
use App\Models\Company;
use App\Models\Invoice;
2021-01-25 07:55:04 +11:00
use App\Models\Payment;
use Illuminate\Queue\SerializesModels;
/**
* Class InvoiceWasPaid.
*/
class InvoiceWasPaid
{
use SerializesModels;
/**
* @var Invoice
*/
public $invoice;
2021-01-25 07:55:04 +11:00
public $payment;
public $company;
2020-07-08 22:02:16 +10:00
public $event_vars;
/**
* Create a new event instance.
*
* @param Invoice $invoice
2020-10-28 21:10:49 +11:00
* @param Company $company
* @param array $event_vars
*/
2021-01-25 07:55:04 +11:00
public function __construct(Invoice $invoice, Payment $payment, Company $company, array $event_vars)
{
$this->invoice = $invoice;
2021-01-25 07:55:04 +11:00
$this->payment = $payment;
$this->company = $company;
2020-07-08 22:02:16 +10:00
$this->event_vars = $event_vars;
}
}