mirror of
https://github.com/ellite/Wallos.git
synced 2026-01-15 02:08:21 -05: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;
|
|
} |