mirror of
https://github.com/itflow-org/itflow
synced 2026-03-10 07:44:50 +00:00
14 lines
206 B
PHP
14 lines
206 B
PHP
<?php
|
|
|
|
namespace Psr\Clock;
|
|
|
|
use DateTimeImmutable;
|
|
|
|
interface ClockInterface
|
|
{
|
|
/**
|
|
* Returns the current time as a DateTimeImmutable Object
|
|
*/
|
|
public function now(): DateTimeImmutable;
|
|
}
|