mirror of
https://github.com/ellite/Wallos.git
synced 2026-08-01 10:46:06 -04:00
13 lines
217 B
PHP
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;
|
|
} |