mirror of
https://github.com/ellite/Wallos.git
synced 2026-04-23 16:38:46 -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;
|
|
} |