1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 17:01:33 +02:00
invoiceninja/app/Observers/ClientObserver.php

76 lines
1.5 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;
2020-07-06 13:22:36 +02:00
use App\Jobs\Util\WebhookHandler;
2019-04-19 11:09:55 +02:00
use App\Models\Client;
2020-07-06 13:22:36 +02:00
use App\Models\Webhook;
2019-04-19 11:09:55 +02:00
class ClientObserver
{
/**
* Handle the client "created" event.
*
* @param \App\Client $client
* @return void
*/
public function created(Client $client)
{
2020-07-06 13:22:36 +02:00
WebhookHandler::dispatch(Webhook::EVENT_CREATE_CLIENT, $client);
2019-04-19 11:09:55 +02:00
}
/**
* Handle the client "updated" event.
*
* @param \App\Client $client
* @return void
*/
public function updated(Client $client)
2020-07-01 07:51:19 +02:00
{
2020-07-06 13:22:36 +02:00
WebhookHandler::dispatch(Webhook::EVENT_UPDATE_CLIENT, $client);
2019-04-19 11:09:55 +02:00
}
/**
* Handle the client "deleted" event.
*
* @param \App\Client $client
* @return void
*/
public function deleted(Client $client)
{
2020-07-06 13:22:36 +02:00
WebhookHandler::dispatch(Webhook::EVENT_DELETE_CLIENT, $client);
2019-04-19 11:09:55 +02:00
}
/**
* Handle the client "restored" event.
*
* @param \App\Client $client
* @return void
*/
public function restored(Client $client)
{
//
}
/**
* Handle the client "force deleted" event.
*
* @param \App\Client $client
* @return void
*/
public function forceDeleted(Client $client)
{
//
}
}