1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-19 16:01:34 +02:00
invoiceninja/app/Events/PaymentWasVoided.php

30 lines
442 B
PHP
Raw Permalink Normal View History

2017-01-30 20:40:43 +01:00
<?php
namespace App\Events;
2016-05-06 23:05:42 +02:00
use App\Models\Payment;
2016-05-06 23:05:42 +02:00
use Illuminate\Queue\SerializesModels;
/**
2017-01-30 20:40:43 +01:00
* Class PaymentWasVoided.
*/
class PaymentWasVoided extends Event
{
2016-05-06 23:05:42 +02:00
use SerializesModels;
/**
* @var Payment
*/
2016-05-06 23:05:42 +02:00
public $payment;
/**
* Create a new event instance.
*
* @param Payment $payment
2016-05-06 23:05:42 +02:00
*/
public function __construct(Payment $payment)
2016-05-06 23:05:42 +02:00
{
$this->payment = $payment;
}
}