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
15 lines
343 B
PHP
15 lines
343 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Support\Baselines\CompareSemantics;
|
|
|
|
enum CompareResultComparisonStatus: string
|
|
{
|
|
case NotCompared = 'not_compared';
|
|
case NoDrift = 'no_drift';
|
|
case DriftDetected = 'drift_detected';
|
|
case CompareFailed = 'compare_failed';
|
|
case CompareNotSupported = 'compare_not_supported';
|
|
}
|