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

42 lines
895 B
PHP
Raw Normal View History

<?php
2020-07-08 14:02:16 +02:00
/**
* Invoice Ninja (https://invoiceninja.com).
2020-07-08 14:02:16 +02:00
*
* @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\Credit;
use App\Models\Credit;
use Illuminate\Broadcasting\InteractsWithSockets;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Queue\SerializesModels;
class CreditWasEmailedAndFailed
{
use Dispatchable, InteractsWithSockets, SerializesModels;
public $credit;
public $errors;
2020-06-30 01:35:17 +02:00
public $company;
2020-07-08 14:02:16 +02:00
public $event_vars;
public function __construct(Credit $credit, $company, array $errors, array $event_vars)
{
$this->credit = $credit;
2020-06-30 01:35:17 +02:00
$this->company = $company;
$this->errors = $errors;
2020-07-08 14:02:16 +02:00
$this->event_vars = $event_vars;
}
}