1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-10 21:22:58 +01:00
invoiceninja/app/Observers/PaymentObserver.php
2019-05-13 16:18:46 +10:00

73 lines
1.3 KiB
PHP

<?php
/**
* Invoice Ninja (https://invoiceninja.com)
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2019. Invoice Ninja LLC (https://invoiceninja.com)
*
* @license https://opensource.org/licenses/AAL
*/
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)
{
//
}
}