1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 17:31:35 +02:00
invoiceninja/app/Events/CreditWasDeleted.php

29 lines
430 B
PHP
Raw Normal View History

2015-03-31 19:42:37 +02:00
<?php namespace App\Events;
use App\Models\Credit;
2015-03-31 19:42:37 +02:00
use Illuminate\Queue\SerializesModels;
/**
* Class CreditWasDeleted
*/
2015-10-28 20:22:07 +01:00
class CreditWasDeleted extends Event {
2015-03-31 19:42:37 +02:00
use SerializesModels;
/**
* @var Credit
*/
2015-10-28 20:22:07 +01:00
public $credit;
/**
* Create a new event instance.
*
* @param Credit $credit
*/
public function __construct(Credit $credit)
2015-03-31 20:50:58 +02:00
{
2015-10-28 20:22:07 +01:00
$this->credit = $credit;
2015-03-31 20:50:58 +02:00
}
2015-03-31 19:42:37 +02:00
}