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

25 lines
492 B
PHP
Raw Normal View History

<?php
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;
public function __construct(Credit $credit, array $errors)
{
$this->credit = $credit;
$this->errors = $errors;
}
}