<?php
namespace Psr\Clock;
use DateTimeImmutable;
interface ClockInterface
{
/**
* Returns the current time as a DateTimeImmutable Object
*/
public function now(): DateTimeImmutable;
}
For code examples and implementation guides, please refer to the “Examples” section on our developer portal. Go to GitHub Repository