2020-02-12 10:21:06 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Events\Payment;
|
|
|
|
|
|
|
|
use App\Models\Payment;
|
|
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class InvoiceWasEmailedAndFailed.
|
|
|
|
*/
|
|
|
|
class PaymentWasEmailedAndFailed
|
|
|
|
{
|
|
|
|
use 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;
|
2020-02-12 10:21:06 +01:00
|
|
|
/**
|
|
|
|
* PaymentWasEmailedAndFailed constructor.
|
|
|
|
* @param Payment $payment
|
|
|
|
* @param array $errors
|
|
|
|
*/
|
2020-07-08 14:02:16 +02:00
|
|
|
public function __construct(Payment $payment, $company, array $errors, array $event_vars)
|
2020-02-12 10:21:06 +01:00
|
|
|
{
|
|
|
|
$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;
|
2020-02-12 10:21:06 +01:00
|
|
|
}
|
|
|
|
}
|