1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-23 09:51:35 +02:00
invoiceninja/app/Events/InvoiceSent.php

24 lines
333 B
PHP
Raw Normal View History

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