Akaunting/app/Events/Income/InvoiceUpdating.php

27 lines
413 B
PHP
Raw Normal View History

2017-11-16 23:09:11 +00:00
<?php
2019-11-16 07:21:14 +00:00
namespace App\Events\Income;
2017-11-16 23:09:11 +00:00
2019-11-16 07:21:14 +00:00
use Illuminate\Queue\SerializesModels;
class InvoiceUpdating
2017-11-16 23:09:11 +00:00
{
2019-11-16 07:21:14 +00:00
use SerializesModels;
2017-11-16 23:09:11 +00:00
public $invoice;
public $request;
2017-11-16 23:09:11 +00:00
/**
* Create a new event instance.
*
* @param $invoice
2019-11-16 07:21:14 +00:00
* @param $request
2017-11-16 23:09:11 +00:00
*/
public function __construct($invoice, $request)
2017-11-16 23:09:11 +00:00
{
$this->invoice = $invoice;
$this->request = $request;
2017-11-16 23:09:11 +00:00
}
}