Joywork/import/Clock/StaticClock.php
2026-05-22 21:21:54 +03:00

24 lines
366 B
PHP

<?php
final class StaticClock implements Clock
{
/**
* @var string
*/
private $time;
/**
* @param string $time "2015-02-17 18:49:00"
*/
public function __construct($time) {
$this->time = $time;
}
/**
* {@inheritdoc}
*/
public function now() {
return new \DateTimeImmutable($this->time);
}
}