1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-11 05:32:39 +01:00
invoiceninja/app/Events/Payment/PaymentWasVoided.php

30 lines
442 B
PHP
Raw Normal View History

2019-04-19 10:49:14 +02:00
<?php
namespace App\Events;
use App\Models\Payment;
use Illuminate\Queue\SerializesModels;
/**
* Class PaymentWasVoided.
*/
class PaymentWasVoided extends Event
{
use SerializesModels;
/**
* @var Payment
*/
public $payment;
/**
* Create a new event instance.
*
* @param Payment $payment
*/
public function __construct(Payment $payment)
{
$this->payment = $payment;
}
}