zzwy2/vendor/lcobucci/clock/src/Clock.php

12 lines
149 B
PHP
Raw Normal View History

2022-10-08 17:31:39 +08:00
<?php
declare(strict_types=1);
namespace Lcobucci\Clock;
use DateTimeImmutable;
interface Clock
{
public function now(): DateTimeImmutable;
}