1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 17:31:35 +02:00
invoiceninja/app/Events/PaymentWasArchived.php

29 lines
445 B
PHP
Raw Normal View History

2015-03-31 19:42:37 +02:00
<?php namespace App\Events;
use App\Models\Payment;
2015-03-31 19:42:37 +02:00
use Illuminate\Queue\SerializesModels;
/**
* Class PaymentWasArchived
*/
class PaymentWasArchived extends Event
{
use SerializesModels;
2015-03-31 19:42:37 +02:00
/**
* @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)
{
$this->payment = $payment;
}
2015-03-31 19:42:37 +02:00
}