← Code-Übersicht

ClockPort.php

Pfad: src/Domain/Rechnung/ClockPort.php

Ext: php

Größe: 254 Bytes

Geändert: 2026-07-16 14:10:43+02

<?php
declare(strict_types=1);

namespace Demo\Domain\Rechnung;

/**
 * Port fuer Uhrzeit/Datum bei deterministischer Zeitsteuerung.
 */
interface ClockPort
{
    /**
     * @return string ISO-8601 Zeitpunkt.
     */
    public function now(): string;
}