mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-06 03:02:34 +01:00
2da1f24868
* Emails * change to user service
46 lines
828 B
PHP
46 lines
828 B
PHP
<?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\Quote;
|
|
|
|
use App\Models\Quote;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
/**
|
|
* Class InvoiceWasEmailedAndFailed.
|
|
*/
|
|
class QuoteWasEmailedAndFailed
|
|
{
|
|
use SerializesModels;
|
|
|
|
/**
|
|
* @var Quote
|
|
*/
|
|
public $quote;
|
|
|
|
/**
|
|
* @var array
|
|
*/
|
|
public $errors;
|
|
|
|
/**
|
|
* QuoteWasEmailedAndFailed constructor.
|
|
* @param Quote $quote
|
|
* @param array $errors
|
|
*/
|
|
public function __construct(Quote $quote, array $errors)
|
|
{
|
|
$this->quote = $quote;
|
|
|
|
$this->errors = $errors;
|
|
}
|
|
}
|