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

25 lines
346 B
PHP
Raw Normal View History

2019-04-19 10:49:14 +02:00
<?php
2019-04-19 11:09:55 +02:00
namespace App\Events\Quote;
2019-04-19 10:49:14 +02:00
use Illuminate\Queue\SerializesModels;
/**
* Class QuoteWasDeleted.
*/
2019-04-20 00:27:37 +02:00
class QuoteWasDeleted
2019-04-19 10:49:14 +02:00
{
use SerializesModels;
public $quote;
/**
* Create a new event instance.
*
* @param $quote
*/
public function __construct($quote)
{
$this->quote = $quote;
}
}