Форматирование

This commit is contained in:
brusnitsyn
2026-04-24 16:46:10 +09:00
parent fd0e6ee817
commit 63daa62888
87 changed files with 1380 additions and 791 deletions

View File

@@ -5,5 +5,6 @@ namespace App\Contracts;
interface MetricCalculatorInterface
{
public function calculate(array $departmentIds, string $startDate, string $endDate): array;
public function getMetricId(): int;
}

View File

@@ -8,5 +8,6 @@ use Illuminate\Support\Collection;
interface PatientProviderInterface
{
public function getPatients(string $type, int $branchId, DateRange $dateRange, array $options = []): Collection;
public function getCount(string $type, int $branchId, DateRange $dateRange, array $options = []): int;
}