1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 01:11:34 +02:00
invoiceninja/app/Events/Payment/PaymentWasEmailed.php

40 lines
995 B
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\Payment;
2020-07-08 14:02:16 +02:00
use App\Models\Company;
use App\Models\Payment;
2023-06-24 02:09:14 +02:00
use App\Models\ClientContact;
use Illuminate\Queue\SerializesModels;
2023-06-24 02:09:14 +02:00
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Broadcasting\InteractsWithSockets;
/**
* Class PaymentWasEmailed.
*/
class PaymentWasEmailed
{
2020-11-12 04:04:27 +01:00
use Dispatchable, InteractsWithSockets, SerializesModels;
/**
2020-06-30 01:35:17 +02:00
* Create a new event instance.
*
* @param Payment $payment
2020-10-28 11:10:49 +01:00
* @param Company $company
2023-06-24 02:09:14 +02:00
* @param ClientContact $contact
2020-10-28 11:10:49 +01:00
* @param array $event_vars
*/
2023-06-24 02:09:14 +02:00
public function __construct(public Payment $payment, public Company $company, public ClientContact $contact, public array $event_vars)
{
}
}