JFIF  x x C         C     "        } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz        w !1AQ aq"2B #3Rbr{ gilour
<?php declare(strict_types=1); namespace Beste\Clock; use Beste\Clock; use DateTimeImmutable; final class SystemClock implements Clock { private function __construct() { } public static function create(): self { return new self(); } public function now(): DateTimeImmutable { return new DateTimeImmutable(); } }