1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-11 13:42:49 +01:00
invoiceninja/app/Events/Credit/CreditWasEmailed.php

26 lines
480 B
PHP
Raw Normal View History

<?php
namespace App\Events\Credit;
use App\Models\Credit;
use Illuminate\Broadcasting\InteractsWithSockets;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Queue\SerializesModels;
class CreditWasEmailed
{
use Dispatchable, InteractsWithSockets, SerializesModels;
public $credit;
/**
* Create a new event instance.
*
* @return void
*/
public function __construct(Credit $credit)
{
$this->credit = $credit;
}
}