no-framework-tutorial/implementation/10-invoker/src/Service/Time/Now.php

12 lines
165 B
PHP

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