1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00
invoiceninja/app/Events/CreditWasArchived.php

30 lines
435 B
PHP
Raw Normal View History

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