Config-driven mapping from (target_entity, target_attribute) to storage shape (scalar/collection/relation), PHP type, and identity-key eligibility. Replaces any name-suffix matching (e.g. _tags, _skills) — those are convention-not-contract and reject by design. Used by publish guards now and (in session 2) by FormBindingApplicator. Refs: RFC-WS-6.md §4 (V1) Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
22 lines
469 B
PHP
22 lines
469 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\FormBuilder\Bindings;
|
|
|
|
use App\Enums\FormBuilder\BindingTargetType;
|
|
|
|
/**
|
|
* RFC-WS-6 §4 (V1) — single config row from
|
|
* config/form_builder/binding_targets.php, materialised by
|
|
* {@see BindingTypeRegistry::resolve()}.
|
|
*/
|
|
final readonly class BindingTargetMeta
|
|
{
|
|
public function __construct(
|
|
public BindingTargetType $type,
|
|
public string $php,
|
|
public bool $identityKeyEligible,
|
|
) {}
|
|
}
|