1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 17:01:33 +02:00
invoiceninja/app/Events/Credit/CreditWasMarkedSent.php
2020-03-03 20:51:05 +11:00

31 lines
527 B
PHP

<?php
namespace App\Events\Credit;
use App\Models\Company;
use App\Models\Credit;
use Illuminate\Queue\SerializesModels;
/**
* Class CreditWasMarkedSent.
*/
class CreditWasMarkedSent
{
use SerializesModels;
/**
* @var Credit
*/
public $credit;
public $company;
/**
* Create a new event instance.
*
* @param Quote $credit
*/
public function __construct(Credit $credit, Company $company)
{
$this->credit = $credit;
$this->company = $company;
}
}