1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00
invoiceninja/app/Events/PaymentFailed.php

30 lines
436 B
PHP
Raw Normal View History

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