akaunting/app/Events/InvoiceUpdated.php
2018-10-23 18:47:55 +03:00

19 lines
248 B
PHP

<?php
namespace App\Events;
class InvoiceUpdated
{
public $invoice;
/**
* Create a new event instance.
*
* @param $invoice
*/
public function __construct($invoice)
{
$this->invoice = $invoice;
}
}