TenantAtlas/apps/platform/app/Support/Baselines/CompareSemantics/CompareResultTrustLevel.php
ahmido ea77c8c718 feat(baselines): implement baseline compare result semantics (#454)
Implemented deterministic Baseline Result Semantics (Spec 383), introducing CompareSubjectResult and CompareEvidenceResult. Replaced generic arrays with strict Data Transfer Objects for Baseline engine output.

Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de>
Reviewed-on: #454
2026-06-16 20:20:27 +00:00

16 lines
304 B
PHP

<?php
declare(strict_types=1);
namespace App\Support\Baselines\CompareSemantics;
enum CompareResultTrustLevel: string
{
case High = 'high';
case Medium = 'medium';
case Low = 'low';
case Untrusted = 'untrusted';
case NotApplicable = 'not_applicable';
case Failed = 'failed';
}