/
home
/
techb158
/
dev.balacoffee.com
/
vendor
/
lcobucci
/
clock
/
src
/
/home/techb158/dev.balacoffee.com/vendor/lcobucci/clock/src
mkdir
upload
Name
Size
Mode
Actions
Clock.php
210
0644
edit
dl
rm
FrozenClock.php
539
0644
edit
dl
rm
SystemClock.php
637
0644
edit
dl
rm
Edit:
/home/techb158/dev.balacoffee.com/vendor/lcobucci/clock/src/SystemClock.php
(637B)
<?php declare(strict_types=1); namespace Lcobucci\Clock; use DateTimeImmutable; use DateTimeZone; use function date_default_timezone_get; final class SystemClock implements Clock { public function __construct(private readonly DateTimeZone $timezone) { } public static function fromUTC(): self { return new self(new DateTimeZone('UTC')); } public static function fromSystemTimezone(): self { return new self(new DateTimeZone(date_default_timezone_get())); } public function now(): DateTimeImmutable { return new DateTimeImmutable('now', $this->timezone); } }
Save
cmd:
run