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

21 lines
320 B
PHP
Raw Normal View History

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