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