1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-08 12:12:48 +01:00
invoiceninja/app/Events/QuoteWasEmailed.php

31 lines
447 B
PHP
Raw Permalink Normal View History

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