diff --git a/app/Services/AuditionCacheService.php b/app/Services/AuditionCacheService.php index e1a1300..8c96565 100644 --- a/app/Services/AuditionCacheService.php +++ b/app/Services/AuditionCacheService.php @@ -54,13 +54,13 @@ class AuditionCacheService return $this->getAuditions()->firstWhere('id', $id); } - public function refreshCache() + public function refreshCache(): void { Cache::forget($this->cacheKey); $this->getAuditions(); } - public function clearCache() + public function clearCache(): void { if (App::environment('local')) { Session::flash('success', 'Audition Cache Cleared'); @@ -80,7 +80,7 @@ class AuditionCacheService }); } - public function clearPublishedAuditionsCache() + public function clearPublishedAuditionsCache(): void { Cache::forget('publishedAuditions'); } diff --git a/resources/views/tabulation/auditionSeating.blade.php b/resources/views/tabulation/auditionSeating.blade.php index 9e54b53..c916ff8 100644 --- a/resources/views/tabulation/auditionSeating.blade.php +++ b/resources/views/tabulation/auditionSeating.blade.php @@ -25,3 +25,5 @@ + +{{--TODO deal with unlikely scenario of a doubler is entered for seating on some auditions but not others--}}