mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-08 12:12:48 +01:00
30 lines
435 B
PHP
30 lines
435 B
PHP
<?php
|
|
|
|
namespace App\Events;
|
|
|
|
use App\Models\Credit;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
/**
|
|
* Class CreditWasRestored.
|
|
*/
|
|
class CreditWasRestored extends Event
|
|
{
|
|
use SerializesModels;
|
|
|
|
/**
|
|
* @var Credit
|
|
*/
|
|
public $credit;
|
|
|
|
/**
|
|
* Create a new event instance.
|
|
*
|
|
* @param Credit $credit
|
|
*/
|
|
public function __construct(Credit $credit)
|
|
{
|
|
$this->credit = $credit;
|
|
}
|
|
}
|