mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-06 03:02:34 +01:00
64 lines
1.1 KiB
PHP
64 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace App\Observers;
|
|
|
|
use App\Models\Payment;
|
|
|
|
class PaymentObserver
|
|
{
|
|
/**
|
|
* Handle the payment "created" event.
|
|
*
|
|
* @param \App\Models\Payment $payment
|
|
* @return void
|
|
*/
|
|
public function created(Payment $payment)
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Handle the payment "updated" event.
|
|
*
|
|
* @param \App\Models\Payment $payment
|
|
* @return void
|
|
*/
|
|
public function updated(Payment $payment)
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Handle the payment "deleted" event.
|
|
*
|
|
* @param \App\Models\Payment $payment
|
|
* @return void
|
|
*/
|
|
public function deleted(Payment $payment)
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Handle the payment "restored" event.
|
|
*
|
|
* @param \App\Models\Payment $payment
|
|
* @return void
|
|
*/
|
|
public function restored(Payment $payment)
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Handle the payment "force deleted" event.
|
|
*
|
|
* @param \App\Models\Payment $payment
|
|
* @return void
|
|
*/
|
|
public function forceDeleted(Payment $payment)
|
|
{
|
|
//
|
|
}
|
|
}
|