18 lines
277 B
PHP
18 lines
277 B
PHP
<?php
|
|
|
|
namespace App\Domain\Model;
|
|
|
|
use DateTimeInterface;
|
|
|
|
final readonly class UserContext
|
|
{
|
|
public function __construct(
|
|
private readonly DateTimeInterface $now,
|
|
) {
|
|
}
|
|
|
|
public function now(): DateTimeInterface
|
|
{
|
|
return $this->now;
|
|
}
|
|
} |