12 lines
285 B
PHP
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;
|
|
}
|