PSR-20: Clock
現在Draft(草案)段階の
PSR
標準。
提案
Propsal Idea: ClockInterface
New PSR for ClockInterface by cseufert · Pull Request #1224 · php-fig/fig-standards
ENTRANCE VOTE CC Clock Interface PSR
インターフェイス
code:php
<?php
namespace Psr\Clock;
interface ClockInterface
{
/**
* Returns the current time as a DateTimeImmutable Object
*/
public function now(): \DateTimeImmutable;
}