51 lines
746 B
PHP
51 lines
746 B
PHP
<?php
|
|
|
|
namespace App\Observers;
|
|
|
|
use App\Events\AuditionChange;
|
|
use App\Events\EntryChange;
|
|
use App\Models\Entry;
|
|
|
|
class EntryObserver
|
|
{
|
|
/**
|
|
* Handle the Entry "created" event.
|
|
*/
|
|
public function created(Entry $entry): void
|
|
{
|
|
|
|
}
|
|
|
|
/**
|
|
* Handle the Entry "updated" event.
|
|
*/
|
|
public function updated(Entry $entry): void
|
|
{
|
|
|
|
}
|
|
|
|
/**
|
|
* Handle the Entry "deleted" event.
|
|
*/
|
|
public function deleted(Entry $entry): void
|
|
{
|
|
|
|
}
|
|
|
|
/**
|
|
* Handle the Entry "restored" event.
|
|
*/
|
|
public function restored(Entry $entry): void
|
|
{
|
|
|
|
}
|
|
|
|
/**
|
|
* Handle the Entry "force deleted" event.
|
|
*/
|
|
public function forceDeleted(Entry $entry): void
|
|
{
|
|
|
|
}
|
|
}
|