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