mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 05:32:39 +01:00
38 lines
780 B
PHP
38 lines
780 B
PHP
|
<?php
|
||
|
/**
|
||
|
* Invoice Ninja (https://invoiceninja.com)
|
||
|
*
|
||
|
* @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;
|
||
|
|
||
|
use App\Models\Company;
|
||
|
use App\Models\CreditWasViewed;
|
||
|
use Illuminate\Queue\SerializesModels;
|
||
|
|
||
|
/**
|
||
|
* Class CreditWasViewed.
|
||
|
*/
|
||
|
class CreditWasViewed
|
||
|
{
|
||
|
use SerializesModels;
|
||
|
|
||
|
public $invitation;
|
||
|
|
||
|
public $company;
|
||
|
|
||
|
public $event_vars;
|
||
|
|
||
|
public function __construct(CreditInvitation $invitation, Company $company, array $event_vars)
|
||
|
{
|
||
|
$this->invitation = $invitation;
|
||
|
$this->company = $company;
|
||
|
$this->event_vars = $event_vars;
|
||
|
}
|
||
|
}
|