12 lines
240 B
PHP
12 lines
240 B
PHP
<?php
|
|
|
|
namespace App\Domain\Reports\Contracts;
|
|
|
|
use App\Domain\Reports\Models\PatientCollection;
|
|
use App\Domain\Reports\Models\ReportContext;
|
|
|
|
interface PatientSource
|
|
{
|
|
public function load(ReportContext $context): PatientCollection;
|
|
}
|