no-framework-tutorial/app/src/Service/Time/Clock.php
2025-07-08 22:45:56 +02:00

8 lines
No EOL
142 B
PHP

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