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

56 lines
1.2 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\Payment;
2020-11-12 04:04:27 +01:00
use App\Models\Company;
use App\Models\Payment;
2020-11-12 04:04:27 +01:00
use Illuminate\Broadcasting\InteractsWithSockets;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Queue\SerializesModels;
/**
2020-11-12 04:04:27 +01:00
* Class PaymentWasEmailedAndFailed.
*/
class PaymentWasEmailedAndFailed
{
2020-11-12 04:04:27 +01:00
use Dispatchable, InteractsWithSockets, SerializesModels;
/**
* @var Payment
*/
public $payment;
public $errors;
2020-06-30 01:35:17 +02:00
public $company;
2020-07-08 14:02:16 +02:00
public $event_vars;
/**
* PaymentWasEmailedAndFailed constructor.
* @param Payment $payment
2020-10-28 11:10:49 +01:00
* @param $company
2021-02-18 00:51:56 +01:00
* @param string $errors
2020-10-28 11:10:49 +01:00
* @param array $event_vars
*/
2021-02-18 00:51:56 +01:00
public function __construct(Payment $payment, Company $company, string $errors, array $event_vars)
{
$this->payment = $payment;
$this->errors = $errors;
2020-06-30 01:35:17 +02:00
$this->company = $company;
2020-07-08 14:02:16 +02:00
$this->event_vars = $event_vars;
}
}