404

[ Avaa Bypassed ]




Upload:

Command:

elspacio@3.136.19.41: ~ $
<?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);
    }
}

Filemanager

Name Type Size Permission Actions
Clock.php File 202 B 0644
FrozenClock.php File 539 B 0644
SystemClock.php File 637 B 0644