30 lines
573 B
PHP
30 lines
573 B
PHP
<?php
|
|
|
|
namespace App\Services;
|
|
|
|
use App\Models\Entry;
|
|
use App\Models\ScoreSheet;
|
|
use App\Models\ScoringGuide;
|
|
use Illuminate\Support\Collection;
|
|
use Illuminate\Support\Facades\Cache;
|
|
use Illuminate\Support\Facades\DB;
|
|
|
|
use function array_unshift;
|
|
|
|
class ScoreService
|
|
{
|
|
protected $auditionCache;
|
|
|
|
protected $entryCache;
|
|
|
|
/**
|
|
* Create a new class instance.
|
|
*/
|
|
public function __construct(AuditionService $auditionCache, EntryService $entryCache)
|
|
{
|
|
$this->auditionCache = $auditionCache;
|
|
$this->entryCache = $entryCache;
|
|
}
|
|
|
|
}
|