Files
onboard/app/Domain/ReportDuty/Contracts/ReportDutyObservablePatientsInterface.php
2026-07-31 17:19:03 +09:00

12 lines
285 B
PHP

<?php
namespace App\Domain\ReportDuty\Contracts;
use App\Domain\ReportDuty\Models\ReportDuty;
use Illuminate\Support\LazyCollection;
interface ReportDutyObservablePatientsInterface
{
public function upsertObservations(ReportDuty $report, array $observables): ?LazyCollection;
}