2020-03-03 10:51:05 +01:00
|
|
|
<?php
|
2020-07-08 14:02:16 +02:00
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2020-07-08 14:02:16 +02:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
|
|
|
|
2020-03-03 10:51:05 +01:00
|
|
|
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;
|
|
|
|
|
2020-07-08 14:02:16 +02:00
|
|
|
public $company;
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2020-07-08 14:02:16 +02:00
|
|
|
public $event_vars;
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2020-03-03 10:51:05 +01:00
|
|
|
/**
|
|
|
|
* Create a new event instance.
|
|
|
|
*
|
2020-07-08 14:02:16 +02:00
|
|
|
* @param Credit $credit
|
2020-10-28 11:10:49 +01:00
|
|
|
* @param Company $company
|
|
|
|
* @param array $event_vars
|
2020-03-03 10:51:05 +01:00
|
|
|
*/
|
2020-07-08 14:02:16 +02:00
|
|
|
public function __construct(Credit $credit, Company $company, array $event_vars)
|
2020-03-03 10:51:05 +01:00
|
|
|
{
|
|
|
|
$this->credit = $credit;
|
|
|
|
$this->company = $company;
|
2020-07-08 14:02:16 +02:00
|
|
|
$this->event_vars = $event_vars;
|
2020-03-03 10:51:05 +01:00
|
|
|
}
|
|
|
|
}
|