Deploy Ladill Care / deploy (push) Successful in 1m26s
Add a template-driven assessment system with universal intake, clinical pathways, disease instruments (stroke MVP + extended, diabetes, and ten specialty packs), scoring, patient outcome trends, REST/API + FHIR export, and Enterprise org-level assessment analytics. Seed packs and design/licensing docs ship for deploy and pre-GA review.
14 lines
282 B
PHP
14 lines
282 B
PHP
<?php
|
|
|
|
namespace App\Contracts\Care;
|
|
|
|
use App\Models\Assessment;
|
|
|
|
interface ScoresAssessment
|
|
{
|
|
/**
|
|
* @return array{total: ?float, max: ?float, subscores: array<string, float|int>, severity_label: ?string}
|
|
*/
|
|
public function score(Assessment $assessment): array;
|
|
}
|