23 lines
492 B
PHP
23 lines
492 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Module\Core\Domain\Event;
|
|
|
|
use App\Shared\Domain\Event\DomainEventInterface;
|
|
use DateTimeImmutable;
|
|
|
|
final readonly class UserCreated implements DomainEventInterface
|
|
{
|
|
public function __construct(
|
|
public int $userId,
|
|
public string $username,
|
|
private DateTimeImmutable $occurredAt = new DateTimeImmutable(),
|
|
) {}
|
|
|
|
public function occurredAt(): DateTimeImmutable
|
|
{
|
|
return $this->occurredAt;
|
|
}
|
|
}
|