2020-11-03 11:04:15 +01: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)
|
2020-11-03 11:04:15 +01:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2020-11-03 11:04:15 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Events\Product;
|
|
|
|
|
|
|
|
use App\Models\Company;
|
2021-05-03 03:46:46 +02:00
|
|
|
use App\Models\Product;
|
2020-11-03 11:04:15 +01:00
|
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class ProductWasRestored.
|
|
|
|
*/
|
|
|
|
class ProductWasRestored
|
|
|
|
{
|
|
|
|
use SerializesModels;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var Product
|
|
|
|
*/
|
|
|
|
public $invoice;
|
|
|
|
|
|
|
|
public $company;
|
|
|
|
|
|
|
|
public $event_vars;
|
|
|
|
|
|
|
|
public $fromDeleted;
|
|
|
|
/**
|
|
|
|
* Create a new event instance.
|
|
|
|
*
|
|
|
|
* @param Product $invoice
|
|
|
|
* @param Company $company
|
|
|
|
* @param array $event_vars
|
|
|
|
*/
|
|
|
|
public function __construct(Product $product, $fromDeleted, Company $company, array $event_vars)
|
|
|
|
{
|
|
|
|
$this->product = $product;
|
|
|
|
$this->fromDeleted = $fromDeleted;
|
|
|
|
$this->company = $company;
|
|
|
|
$this->event_vars = $event_vars;
|
|
|
|
}
|
|
|
|
}
|