Files
Wallos/libs/Psr/Clock/ClockInterface.php
2024-09-28 18:33:09 +02:00

13 lines
217 B
PHP

<?php
namespace Psr\Clock;
use DateTimeImmutable;
interface ClockInterface
{
/**
* Returns the current time as a DateTimeImmutable Object
*/
public function now(): DateTimeImmutable;
}