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
20 lines
608 B
PHP
20 lines
608 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Support\Baselines\CompareSemantics;
|
|
|
|
enum CompareResultCoverageStatus: string
|
|
{
|
|
case FullyVerified = 'fully_verified';
|
|
case VerifiedWithLimitations = 'verified_with_limitations';
|
|
case InventoryOnly = 'inventory_only';
|
|
case IdentityOnly = 'identity_only';
|
|
case CanonicalOnly = 'canonical_only';
|
|
case Unsupported = 'unsupported';
|
|
case MissingLocalEvidence = 'missing_local_evidence';
|
|
case MissingProviderResource = 'missing_provider_resource';
|
|
case Excluded = 'excluded';
|
|
case AcceptedLimitation = 'accepted_limitation';
|
|
}
|