mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-12 14:12:44 +01:00
25 lines
365 B
PHP
25 lines
365 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Events;
|
||
|
|
||
|
use Illuminate\Queue\SerializesModels;
|
||
|
|
||
|
/**
|
||
|
* Class QuoteItemsWereCreated.
|
||
|
*/
|
||
|
class QuoteItemsWereCreated extends Event
|
||
|
{
|
||
|
use SerializesModels;
|
||
|
public $quote;
|
||
|
|
||
|
/**
|
||
|
* Create a new event instance.
|
||
|
*
|
||
|
* @param $quote
|
||
|
*/
|
||
|
public function __construct($quote)
|
||
|
{
|
||
|
$this->quote = $quote;
|
||
|
}
|
||
|
}
|