mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 13:42:49 +01:00
26 lines
480 B
PHP
26 lines
480 B
PHP
|
<?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;
|
||
|
}
|
||
|
}
|