1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 00:41:34 +02:00
invoiceninja/app/Observers/PaymentObserver.php

76 lines
1.6 KiB
PHP
Raw Normal View History

2019-04-19 11:09:55 +02:00
<?php
2019-05-11 05:32:07 +02:00
/**
* Invoice Ninja (https://invoiceninja.com)
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
2019-05-11 05:32:07 +02:00
*
* @license https://opensource.org/licenses/AAL
*/
2019-04-19 11:09:55 +02:00
namespace App\Observers;
2019-10-01 03:56:48 +02:00
use App\Events\Payment\PaymentWasCreated;
2020-07-06 13:22:36 +02:00
use App\Jobs\Util\WebhookHandler;
2019-04-19 11:09:55 +02:00
use App\Models\Payment;
use App\Models\Subscription;
2020-07-06 13:22:36 +02:00
use App\Models\Webhook;
2019-04-19 11:09:55 +02:00
class PaymentObserver
{
/**
* Handle the payment "created" event.
*
* @param \App\Models\Payment $payment
* @return void
*/
public function created(Payment $payment)
{
2020-07-06 13:22:36 +02:00
WebhookHandler::dispatch(Webhook::EVENT_CREATE_PAYMENT, $payment);
2019-04-19 11:09:55 +02:00
}
/**
* 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)
{
2020-07-06 13:22:36 +02:00
WebhookHandler::dispatch(Webhook::EVENT_DELETE_PAYMENT, $payment);
2019-04-19 11:09:55 +02:00
}
/**
* 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)
{
//
}
}