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

23 lines
353 B
PHP
Raw Normal View History

2015-03-31 19:42:37 +02:00
<?php namespace App\Events;
use Illuminate\Queue\SerializesModels;
/**
* Class QuoteWasRestored
*/
class QuoteWasRestored 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
}