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;
}
}