no-framework-tutorial/implementation/15-adding-content/src/Service/Time/Now.php

10 lines
169 B
PHP

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