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