mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-08 20:22:42 +01:00
30 lines
446 B
PHP
30 lines
446 B
PHP
<?php
|
|
|
|
namespace App\Events;
|
|
|
|
use App\Models\Payment;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
/**
|
|
* Class PaymentWasArchived.
|
|
*/
|
|
class PaymentWasArchived extends Event
|
|
{
|
|
use SerializesModels;
|
|
|
|
/**
|
|
* @var Payment
|
|
*/
|
|
public $payment;
|
|
|
|
/**
|
|
* Create a new event instance.
|
|
*
|
|
* @param Payment $payment
|
|
*/
|
|
public function __construct(Payment $payment)
|
|
{
|
|
$this->payment = $payment;
|
|
}
|
|
}
|