12 lines
164 B
PHP
12 lines
164 B
PHP
<?php
|
|
|
|
final class RealtimeClock implements Clock
|
|
{
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function now() {
|
|
return new \DateTimeImmutable('now');
|
|
}
|
|
}
|