2022-06-15 08:27:21 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2024-04-12 06:15:41 +02:00
|
|
|
* @copyright Copyright (c) 2024. Invoice Ninja LLC (https://invoiceninja.com)
|
2022-06-15 08:27:21 +02:00
|
|
|
*
|
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Events\PurchaseOrder;
|
|
|
|
|
|
|
|
use App\Models\Company;
|
|
|
|
use App\Models\PurchaseOrder;
|
|
|
|
use App\Models\VendorContact;
|
|
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class PurchaseOrderWasAccepted.
|
|
|
|
*/
|
|
|
|
class PurchaseOrderWasAccepted
|
|
|
|
{
|
|
|
|
use SerializesModels;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var PurchaseOrder
|
|
|
|
*/
|
|
|
|
public $purchase_order;
|
|
|
|
|
|
|
|
public $company;
|
|
|
|
|
|
|
|
public $event_vars;
|
|
|
|
|
|
|
|
public $contact;
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2022-06-15 08:27:21 +02:00
|
|
|
/**
|
|
|
|
* Create a new event instance.
|
|
|
|
*
|
|
|
|
* @param PurchaseOrder $purchase_order
|
|
|
|
* @param Company $company
|
|
|
|
* @param array $event_vars
|
|
|
|
*/
|
|
|
|
public function __construct(PurchaseOrder $purchase_order, VendorContact $contact, Company $company, array $event_vars)
|
|
|
|
{
|
|
|
|
$this->purchase_order = $purchase_order;
|
|
|
|
$this->contact = $contact;
|
|
|
|
$this->company = $company;
|
|
|
|
$this->event_vars = $event_vars;
|
|
|
|
}
|
|
|
|
}
|