1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51:34 +02:00
invoiceninja/app/Events/PaymentWasRefunded.php

26 lines
422 B
PHP
Raw Normal View History

2016-04-23 22:40:19 +02:00
<?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;
}
}