invoiceninja/app/Events/InvoicePaid.php

24 lines
314 B
PHP
Raw Permalink Normal View History

2015-03-31 20:42:37 +03:00
<?php namespace App\Events;
use App\Events\Event;
use Illuminate\Queue\SerializesModels;
class InvoicePaid extends Event {
use SerializesModels;
2015-03-31 21:50:58 +03:00
public $payment;
2015-03-31 20:42:37 +03:00
/**
* Create a new event instance.
*
* @return void
*/
2015-03-31 21:50:58 +03:00
public function __construct($payment)
2015-03-31 20:42:37 +03:00
{
2015-03-31 21:50:58 +03:00
$this->payment = $payment;
2015-03-31 20:42:37 +03:00
}
}