mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-11 06:46:47 +00:00
49 lines
773 B
PHP
49 lines
773 B
PHP
<?php
|
|
|
|
namespace App\Observers;
|
|
|
|
use App\Models\CourseEvent;
|
|
|
|
class EventObserver
|
|
{
|
|
/**
|
|
* Handle the Event "created" event.
|
|
*/
|
|
public function created(CourseEvent $event): void
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Handle the Event "updated" event.
|
|
*/
|
|
public function updated(CourseEvent $event): void
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Handle the Event "deleted" event.
|
|
*/
|
|
public function deleted(CourseEvent $event): void
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Handle the Event "restored" event.
|
|
*/
|
|
public function restored(CourseEvent $event): void
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Handle the Event "force deleted" event.
|
|
*/
|
|
public function forceDeleted(CourseEvent $event): void
|
|
{
|
|
//
|
|
}
|
|
}
|