Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

64 lines
1.1 KiB
PHP
Raw Permalink Normal View History

2021-02-02 06:40:11 +00:00
<?php
namespace App\Observers;
use App\Models\Service;
class ServiceObserver
{
/**
* Handle the service "created" event.
*
* @param \App\Models\Service $service
* @return void
*/
2023-05-24 22:21:54 +02:00
public function created(Service $service): void
2021-02-02 06:40:11 +00:00
{
//
}
/**
* Handle the service "updated" event.
*
* @param \App\Models\Service $service
* @return void
*/
2023-05-24 22:21:54 +02:00
public function updated(Service $service): void
2021-02-02 06:40:11 +00:00
{
//
}
/**
* Handle the service "deleted" event.
*
* @param \App\Models\Service $service
* @return void
*/
2023-05-24 22:21:54 +02:00
public function deleted(Service $service): void
2021-02-02 06:40:11 +00:00
{
//
}
/**
* Handle the service "restored" event.
*
* @param \App\Models\Service $service
* @return void
*/
2023-05-24 22:21:54 +02:00
public function restored(Service $service): void
2021-02-02 06:40:11 +00:00
{
//
}
/**
* Handle the service "force deleted" event.
*
* @param \App\Models\Service $service
* @return void
*/
2023-05-24 22:21:54 +02:00
public function forceDeleted(Service $service): void
2021-02-02 06:40:11 +00:00
{
//
}
}