mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 05:32:39 +01:00
31 lines
520 B
PHP
31 lines
520 B
PHP
|
<?php
|
||
|
namespace App\Events\Quote;
|
||
|
|
||
|
use App\Models\Company;
|
||
|
use App\Models\Quote;
|
||
|
use Illuminate\Queue\SerializesModels;
|
||
|
|
||
|
/**
|
||
|
* Class InvoiceWasMarkedSent.
|
||
|
*/
|
||
|
class QuoteWasMarkedSent
|
||
|
{
|
||
|
use SerializesModels;
|
||
|
/**
|
||
|
* @var Invoice
|
||
|
*/
|
||
|
public $quote;
|
||
|
public $company;
|
||
|
|
||
|
/**
|
||
|
* Create a new event instance.
|
||
|
*
|
||
|
* @param Quote $quote
|
||
|
*/
|
||
|
public function __construct(Quote $quote, Company $company)
|
||
|
{
|
||
|
$this->quote = $quote;
|
||
|
$this->company = $company;
|
||
|
}
|
||
|
}
|