2021-08-24 03:23:53 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2022-04-27 05:20:41 +02:00
|
|
|
* @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
|
2021-08-24 03:23:53 +02:00
|
|
|
*
|
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Events\RecurringExpense;
|
|
|
|
|
|
|
|
use App\Models\Company;
|
|
|
|
use App\Models\RecurringExpense;
|
|
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class RecurringExpenseWasUpdated.
|
|
|
|
*/
|
|
|
|
class RecurringExpenseWasUpdated
|
|
|
|
{
|
|
|
|
use SerializesModels;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var RecurringExpense
|
|
|
|
*/
|
|
|
|
public $recurring_expense;
|
|
|
|
|
|
|
|
public $company;
|
|
|
|
|
|
|
|
public $event_vars;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new event instance.
|
|
|
|
*
|
|
|
|
* @param RecurringExpense $recurring_expense
|
|
|
|
* @param Company $company
|
|
|
|
* @param array $event_vars
|
|
|
|
*/
|
|
|
|
public function __construct(RecurringExpense $recurring_expense, Company $company, array $event_vars)
|
|
|
|
{
|
|
|
|
$this->recurring_expense = $recurring_expense;
|
|
|
|
$this->company = $company;
|
|
|
|
$this->event_vars = $event_vars;
|
|
|
|
}
|
|
|
|
}
|