From dd0eb75a338569fa93b17d7f910939779727287e Mon Sep 17 00:00:00 2001 From: Matt Young Date: Thu, 3 Jul 2025 10:37:24 -0500 Subject: [PATCH] Prepare DoublerEntryCount for deprecation --- app/Models/DoublerEntryCount.php | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/app/Models/DoublerEntryCount.php b/app/Models/DoublerEntryCount.php index 38ffb02..240ef8f 100644 --- a/app/Models/DoublerEntryCount.php +++ b/app/Models/DoublerEntryCount.php @@ -3,19 +3,21 @@ namespace App\Models; use Illuminate\Database\Eloquent\Model; -use Illuminate\Database\Eloquent\Relations\BelongsTo; +//use Illuminate\Database\Eloquent\Relations\BelongsTo; + +// TODO Remove if truly deprecated. I think it is. class DoublerEntryCount extends Model { protected $table = 'doubler_entry_counts'; - public function student(): BelongsTo - { - return $this->belongsTo(Student::class); - } - - public function event(): BelongsTo - { - return $this->belongsTo(Event::class); - } + // public function student(): BelongsTo + // { + // return $this->belongsTo(Student::class); + // } + // + // public function event(): BelongsTo + // { + // return $this->belongsTo(Event::class); + // } }