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

23 lines
351 B
PHP
Raw Normal View History

2015-03-31 19:42:37 +02:00
<?php namespace App\Events;
use Illuminate\Queue\SerializesModels;
/**
* Class QuoteWasDeleted
*/
class QuoteWasDeleted extends Event
{
use SerializesModels;
2015-10-28 20:22:07 +01:00
public $quote;
/**
* Create a new event instance.
*
* @param $quote
*/
2015-10-28 20:22:07 +01:00
public function __construct($quote)
2015-03-31 20:50:58 +02:00
{
2015-10-28 20:22:07 +01:00
$this->quote = $quote;
2015-03-31 20:50:58 +02:00
}
2015-03-31 19:42:37 +02:00
}