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

10 lines
166 B
PHP

<?php declare(strict_types=1);
namespace Lubian\NoFramework\Service\Time;
use DateTimeImmutable;
interface Clock
{
public function now(): DateTimeImmutable;
}