2021-04-13 01:52:17 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2023-01-28 23:21:40 +01:00
|
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
2021-04-13 01:52:17 +02:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2021-04-13 01:52:17 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Events\Subscription;
|
|
|
|
|
|
|
|
use App\Models\Company;
|
|
|
|
use App\Models\Subscription;
|
|
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class SubscriptionWasRestored.
|
|
|
|
*/
|
|
|
|
class SubscriptionWasRestored
|
|
|
|
{
|
|
|
|
use SerializesModels;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var Subscription
|
|
|
|
*/
|
|
|
|
public $subscription;
|
|
|
|
|
|
|
|
public $company;
|
|
|
|
|
|
|
|
public $event_vars;
|
|
|
|
|
|
|
|
public $fromDeleted;
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2021-04-13 01:52:17 +02:00
|
|
|
/**
|
|
|
|
* Create a new event instance.
|
|
|
|
*
|
|
|
|
* @param Subscription $subscription
|
|
|
|
* @param Company $company
|
|
|
|
* @param array $event_vars
|
|
|
|
*/
|
|
|
|
public function __construct(Subscription $subscription, $fromDeleted, Company $company, array $event_vars)
|
|
|
|
{
|
2021-04-13 05:09:47 +02:00
|
|
|
$this->subscription = $subscription;
|
2021-04-13 01:52:17 +02:00
|
|
|
$this->fromDeleted = $fromDeleted;
|
|
|
|
$this->company = $company;
|
|
|
|
$this->event_vars = $event_vars;
|
|
|
|
}
|
|
|
|
}
|