1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 17:01:33 +02:00
invoiceninja/app/Events/Credit/CreditWasRestored.php

50 lines
1018 B
PHP
Raw Normal View History

2020-07-22 09:53:14 +02:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
2020-07-22 09:53:14 +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
*/
namespace App\Events\Credit;
2020-11-03 13:35:05 +01:00
use App\Models\Company;
2020-07-22 09:53:14 +02:00
use App\Models\Credit;
use Illuminate\Queue\SerializesModels;
/**
* Class CreditWasRestored.
*/
class CreditWasRestored
{
use SerializesModels;
/**
* @var Client
*/
public $credit;
public $company;
public $event_vars;
2020-11-03 11:04:15 +01:00
public $fromDeleted;
2020-07-22 09:53:14 +02:00
/**
* Create a new event instance.
*
2020-10-28 11:10:49 +01:00
* @param Credit $credit
* @param Company $company
* @param array $event_vars
2020-07-22 09:53:14 +02:00
*/
2020-11-03 11:04:15 +01:00
public function __construct(Credit $credit, $fromDeleted, Company $company, array $event_vars)
2020-07-22 09:53:14 +02:00
{
$this->credit = $credit;
2020-11-03 11:04:15 +01:00
$this->fromDeleted = $fromDeleted;
2020-07-22 09:53:14 +02:00
$this->company = $company;
$this->event_vars = $event_vars;
}
}