50 lines
855 B
PHP
50 lines
855 B
PHP
<?php
|
|
|
|
namespace App\Observers;
|
|
|
|
use App\Events\ScoreSheetChange;
|
|
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
|
|
{
|
|
//
|
|
}
|
|
}
|