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

8 lines
No EOL
142 B
PHP

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