| 123456789101112131415161718192021222324 |
- <?php
- namespace App\Services\WorldCup\Repositories;
- interface WorldCupScheduleRepositoryInterface
- {
- public function allMatches(): array;
- public function matchesByDate(string $scheduleDate): array;
- public function unresolvedMatchesByDate(string $scheduleDate): array;
- public function updateMatchByNoAndDate(
- int $matchNo,
- string $scheduleDate,
- array $attributes
- ): bool;
- public function updateMatchByNo(int $matchNo, array $attributes): bool;
- public function updateMatchById(int $matchId, array $attributes): bool;
- public function writeScheduleAudit(string $actor, string $action, array $payload): void;
- }
|