no-framework-tutorial/implementation/12/src/Service/Time/SystemClock.php
2025-07-08 22:52:57 +02:00

13 lines
240 B
PHP

<?php declare(strict_types=1);
namespace Lubian\NoFramework\Service\Time;
use DateTimeImmutable;
final class SystemClock implements Clock
{
public function now(): DateTimeImmutable
{
return new DateTimeImmutable;
}
}