1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 00:11:35 +02:00
invoiceninja/app/Events/PaymentWasCreated.php

30 lines
444 B
PHP
Raw Normal View History

2017-01-30 20:40:43 +01:00
<?php
namespace App\Events;
2015-03-31 19:42:37 +02:00
use App\Models\Payment;
2015-03-31 19:42:37 +02:00
use Illuminate\Queue\SerializesModels;
/**
2017-01-30 20:40:43 +01:00
* Class PaymentWasCreated.
*/
class PaymentWasCreated extends Event
{
2017-01-30 17:05:31 +01:00
use SerializesModels;
/**
* @var Payment
*/
2015-03-31 20:50:58 +02:00
public $payment;
/**
* Create a new event instance.
*
* @param Payment $payment
*/
public function __construct(Payment $payment)
2015-10-28 20:22:07 +01:00
{
$this->payment = $payment;
}
2015-03-31 19:42:37 +02:00
}