51 lines
1.0 KiB
PHP
51 lines
1.0 KiB
PHP
<?php
|
|
|
|
namespace App\Observers;
|
|
|
|
use App\Events\AuditionChange;
|
|
use App\Events\ScoringGuideChange;
|
|
use App\Models\SubscoreDefinition;
|
|
|
|
class SubscoreDefinitionObserver
|
|
{
|
|
/**
|
|
* Handle the SubscoreDefinition "created" event.
|
|
*/
|
|
public function created(SubscoreDefinition $subscoreDefinition): void
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Handle the SubscoreDefinition "updated" event.
|
|
*/
|
|
public function updated(SubscoreDefinition $subscoreDefinition): void
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Handle the SubscoreDefinition "deleted" event.
|
|
*/
|
|
public function deleted(SubscoreDefinition $subscoreDefinition): void
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Handle the SubscoreDefinition "restored" event.
|
|
*/
|
|
public function restored(SubscoreDefinition $subscoreDefinition): void
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Handle the SubscoreDefinition "force deleted" event.
|
|
*/
|
|
public function forceDeleted(SubscoreDefinition $subscoreDefinition): void
|
|
{
|
|
//
|
|
}
|
|
}
|