TenantAtlas/apps/platform/app/Support/Baselines/CompareSemantics/CompareResultTrustLevel.php
Ahmed Darrazi 7c87a19317
Some checks failed
PR Fast Feedback / fast-feedback (pull_request) Failing after 4m7s
feat(baselines): implement baseline compare result semantics
Implemented deterministic Baseline Result Semantics (Spec 383), introducing CompareSubjectResult and CompareEvidenceResult. Replaced generic arrays with strict Data Transfer Objects for Baseline engine output.
2026-06-16 22:19:10 +02: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';
}