TenantAtlas/apps/platform/app/Support/Baselines/CompareSemantics/CompareResultReadinessImpact.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

15 lines
363 B
PHP

<?php
declare(strict_types=1);
namespace App\Support\Baselines\CompareSemantics;
enum CompareResultReadinessImpact: string
{
case NoImpact = 'no_impact';
case InternalLimitation = 'internal_limitation';
case CustomerLimitation = 'customer_limitation';
case CustomerBlocker = 'customer_blocker';
case InternalBlocker = 'internal_blocker';
}