update implementation of chapter 9

This commit is contained in:
lubiana 2022-05-21 00:57:02 +02:00 committed by Andre Lubian
parent 26aa4b1502
commit 572896685f
7 changed files with 329 additions and 24 deletions

View file

@ -2,7 +2,9 @@
namespace Lubian\NoFramework\Service\Time;
use DateTimeImmutable;
interface Clock
{
public function now(): \DateTimeImmutable;
}
public function now(): DateTimeImmutable;
}