2019-12-22 11:28:41 +01:00
|
|
|
<?php
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2019-12-22 11:28:41 +01:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2022-04-27 05:20:41 +02:00
|
|
|
* @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-12-22 11:28:41 +01:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2019-12-22 11:28:41 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Events\Invoice;
|
|
|
|
|
2020-07-08 14:02:16 +02:00
|
|
|
use App\Models\Company;
|
2019-12-22 11:28:41 +01:00
|
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class InvoiceWasEmailedAndFailed.
|
|
|
|
*/
|
2019-12-30 22:59:12 +01:00
|
|
|
class InvoiceWasEmailedAndFailed
|
2019-12-22 11:28:41 +01:00
|
|
|
{
|
|
|
|
use SerializesModels;
|
|
|
|
|
2021-01-20 02:59:39 +01:00
|
|
|
public $invitation;
|
2019-12-22 11:28:41 +01:00
|
|
|
|
2021-01-20 02:59:39 +01:00
|
|
|
public $message;
|
2019-12-22 11:28:41 +01:00
|
|
|
|
2020-06-30 01:35:17 +02:00
|
|
|
public $company;
|
2020-07-08 14:02:16 +02:00
|
|
|
|
|
|
|
public $event_vars;
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2021-01-20 02:59:39 +01:00
|
|
|
public $template;
|
|
|
|
|
2019-12-22 11:28:41 +01:00
|
|
|
/**
|
|
|
|
* Create a new event instance.
|
|
|
|
*
|
2022-06-08 00:27:47 +02:00
|
|
|
* @param $invitation
|
2020-10-28 11:10:49 +01:00
|
|
|
* @param Company $company
|
|
|
|
* @param string $errors
|
|
|
|
* @param array $event_vars
|
2019-12-22 11:28:41 +01:00
|
|
|
*/
|
2022-06-08 00:27:47 +02:00
|
|
|
public function __construct($invitation, Company $company, string $message, string $template, array $event_vars)
|
2019-12-22 11:28:41 +01:00
|
|
|
{
|
2021-01-20 02:59:39 +01:00
|
|
|
$this->invitation = $invitation;
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2020-06-30 01:35:17 +02:00
|
|
|
$this->company = $company;
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2021-01-20 02:59:39 +01:00
|
|
|
$this->message = $message;
|
2020-07-08 14:02:16 +02:00
|
|
|
|
|
|
|
$this->event_vars = $event_vars;
|
2021-01-20 02:59:39 +01:00
|
|
|
|
|
|
|
$this->template = $template;
|
2019-12-22 11:28:41 +01:00
|
|
|
}
|
|
|
|
}
|