invoiceninja/app/Events/QuoteWasDeleted.php

25 lines
353 B
PHP
Raw Permalink Normal View History

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