auditionadmin/app/Observers/ScoreSheetObserver.php

49 lines
822 B
PHP

<?php
namespace App\Observers;
use App\Models\ScoreSheet;
class ScoreSheetObserver
{
/**
* Handle the ScoreSheet "created" event.
*/
public function created(ScoreSheet $scoreSheet): void
{
//
}
/**
* Handle the ScoreSheet "updated" event.
*/
public function updated(ScoreSheet $scoreSheet): void
{
//
}
/**
* Handle the ScoreSheet "deleted" event.
*/
public function deleted(ScoreSheet $scoreSheet): void
{
//
}
/**
* Handle the ScoreSheet "restored" event.
*/
public function restored(ScoreSheet $scoreSheet): void
{
//
}
/**
* Handle the ScoreSheet "force deleted" event.
*/
public function forceDeleted(ScoreSheet $scoreSheet): void
{
//
}
}