invoiceninja/app/Events/PurchaseOrder/PurchaseOrderWasViewed.php

49 lines
1 KiB
PHP
Raw Permalink Normal View History

2022-06-09 12:24:42 +10:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2023-01-29 09:21:40 +11:00
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
2022-06-09 12:24:42 +10:00
*
* @license https://www.elastic.co/licensing/elastic-license
*/
namespace App\Events\PurchaseOrder;
use App\Models\Company;
use App\Models\PurchaseOrder;
2022-06-14 22:54:31 +10:00
use App\Models\PurchaseOrderInvitation;
2022-06-09 12:24:42 +10:00
use Illuminate\Queue\SerializesModels;
/**
* Class PurchaseOrderWasViewed.
*/
class PurchaseOrderWasViewed
{
use SerializesModels;
/**
* @var PurchaseOrder
*/
2022-06-14 22:54:31 +10:00
public $invitation;
2022-06-09 12:24:42 +10:00
public $company;
public $event_vars;
/**
* Create a new event instance.
*
* @param PurchaseOrder $purchase_order
* @param Company $company
* @param array $event_vars
*/
2022-06-14 22:54:31 +10:00
public function __construct(PurchaseOrderInvitation $invitation, Company $company, array $event_vars)
2022-06-09 12:24:42 +10:00
{
2022-06-14 22:54:31 +10:00
$this->invitation = $invitation;
2022-06-09 12:24:42 +10:00
$this->company = $company;
$this->event_vars = $event_vars;
}
}