2017-01-30 20:40:43 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Events;
|
2015-04-13 14:00:31 +02:00
|
|
|
|
2016-07-19 19:12:45 +02:00
|
|
|
use App\Models\Credit;
|
2015-04-13 14:00:31 +02:00
|
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
|
2016-07-03 18:11:58 +02:00
|
|
|
/**
|
2017-01-30 20:40:43 +01:00
|
|
|
* Class CreditWasArchived.
|
2016-07-03 18:11:58 +02:00
|
|
|
*/
|
|
|
|
class CreditWasArchived extends Event
|
|
|
|
{
|
|
|
|
use SerializesModels;
|
2015-04-13 14:00:31 +02:00
|
|
|
|
2016-07-03 18:11:58 +02:00
|
|
|
/**
|
|
|
|
* @var Client
|
|
|
|
*/
|
2015-10-28 20:22:07 +01:00
|
|
|
public $credit;
|
2015-04-13 14:00:31 +02:00
|
|
|
|
2016-07-03 18:11:58 +02:00
|
|
|
/**
|
|
|
|
* Create a new event instance.
|
|
|
|
*
|
|
|
|
* @param Client $credit
|
|
|
|
*/
|
2016-07-19 19:12:45 +02:00
|
|
|
public function __construct(Credit $credit)
|
2016-07-03 18:11:58 +02:00
|
|
|
{
|
|
|
|
$this->credit = $credit;
|
|
|
|
}
|
2015-04-13 14:00:31 +02:00
|
|
|
}
|