8 lines
No EOL
142 B
PHP
8 lines
No EOL
142 B
PHP
<?php declare(strict_types=1);
|
|
|
|
namespace Lubian\NoFramework\Service\Time;
|
|
|
|
interface Clock
|
|
{
|
|
public function now(): \DateTimeImmutable;
|
|
} |