1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 17:31:35 +02:00
invoiceninja/app/Events/PaymentWasRefunded.php
2016-04-23 16:40:19 -04:00

26 lines
422 B
PHP

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