## Summary - add the structured subject-resolution foundation for baseline compare and baseline capture, including capability guards, subject descriptors, resolution outcomes, and operator action categories - persist structured evidence-gap subject records and update compare/capture surfaces, landing projections, and cleanup tooling to use the new contract - add Spec 163 artifacts and focused Pest coverage for classification, determinism, cleanup, and DB-only rendering ## Validation - `vendor/bin/sail bin pint --dirty --format agent` - `vendor/bin/sail artisan test --compact tests/Unit/Support/Baselines tests/Feature/Baselines tests/Feature/Filament/OperationRunEnterpriseDetailPageTest.php` ## Notes - verified locally that a fresh post-restart baseline compare run now writes structured `baseline_compare.evidence_gaps.subjects` records instead of the legacy broad payload shape - excluded the separate `docs/product/spec-candidates.md` worktree change from this branch commit and PR Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de> Reviewed-on: #193
37 lines
1.2 KiB
PHP
37 lines
1.2 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Support\Baselines;
|
|
|
|
final class ResolutionOutcomeRecord
|
|
{
|
|
/**
|
|
* @param non-empty-string $reasonCode
|
|
* @param 'policy'|'inventory'|'derived'|null $sourceModelExpected
|
|
* @param 'policy'|'inventory'|'derived'|null $sourceModelFound
|
|
*/
|
|
public function __construct(
|
|
public readonly ResolutionOutcome $resolutionOutcome,
|
|
public readonly string $reasonCode,
|
|
public readonly OperatorActionCategory $operatorActionCategory,
|
|
public readonly bool $structural,
|
|
public readonly bool $retryable,
|
|
public readonly ?string $sourceModelExpected = null,
|
|
public readonly ?string $sourceModelFound = null,
|
|
) {}
|
|
|
|
public function toArray(): array
|
|
{
|
|
return [
|
|
'resolution_outcome' => $this->resolutionOutcome->value,
|
|
'reason_code' => $this->reasonCode,
|
|
'operator_action_category' => $this->operatorActionCategory->value,
|
|
'structural' => $this->structural,
|
|
'retryable' => $this->retryable,
|
|
'source_model_expected' => $this->sourceModelExpected,
|
|
'source_model_found' => $this->sourceModelFound,
|
|
];
|
|
}
|
|
}
|