1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 17:01:33 +02:00
invoiceninja/app/Events/Credit/CreditWasUpdated.php

25 lines
501 B
PHP
Raw Normal View History

<?php
namespace App\Events\Credit;
use App\Models\Company;
use App\Models\Credit;
use Illuminate\Broadcasting\InteractsWithSockets;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Queue\SerializesModels;
class CreditWasUpdated
{
use Dispatchable, InteractsWithSockets, SerializesModels;
public $credit;
public $company;
public function __construct(Credit $credit, Company $company)
{
$this->invoice = $credit;
$this->company = $company;
}
}