Files
Starseed/src/Shared/Domain/Event/DomainEventInterface.php

13 lines
181 B
PHP

<?php
declare(strict_types=1);
namespace App\Shared\Domain\Event;
use DateTimeImmutable;
interface DomainEventInterface
{
public function occurredAt(): DateTimeImmutable;
}