no-framework-tutorial/implementation/09/src/Service/Time/SystemClock.php

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;
}
}