no-framework-tutorial/implementation/18-caching/src/Service/Time/Now.php
2022-05-31 18:50:35 +02:00

10 lines
169 B
PHP

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