← Code-Übersicht

SchrittArtefakt.php

Pfad: src/Domain/Prozess/SchrittArtefakt.php

Ext: php

Größe: 548 Bytes

Geändert: 2026-07-15 23:53:26+02

<?php
declare(strict_types=1);

namespace Demo\Domain\Prozess;

/**
 * Zuordnung eines Artefakts zu einem Schritt mit ihrer Beziehung.
 */
final class SchrittArtefakt
{
    /**
     * @param string $typ        Artefakt-Typ (datei, tabelle, ...).
     * @param string $bezeichner Kanonischer Bezeichner.
     * @param string $beziehung  eingabe, ausgabe oder beruehrt.
     */
    public function __construct(
        public readonly string $typ,
        public readonly string $bezeichner,
        public readonly string $beziehung
    ) {
    }
}