1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 08:21:34 +02:00
invoiceninja/app/Events/CreditWasRestored.php
2015-10-28 21:22:07 +02:00

24 lines
335 B
PHP

<?php namespace App\Events;
use App\Events\Event;
use Illuminate\Queue\SerializesModels;
class CreditWasRestored extends Event {
use SerializesModels;
public $credit;
/**
* Create a new event instance.
*
* @return void
*/
public function __construct($credit)
{
$this->credit = $credit;
}
}