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
363 B
PHP
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';
|
|
}
|