PHP 8.3.31
Preview: Clock.php Size: 2.31 KB
/home/getspomw/royalsquad.us/vendor/symfony/clock/Clock.php

<?php

/*
 * This file is part of the Symfony package.
 *
 * (c) Fabien Potencier <fabien@symfony.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace Symfony\Component\Clock;

use Psr\Clock\ClockInterface as PsrClockInterface;

/**
 * A global clock.
 *
 * @author Nicolas Grekas <p@tchwork.com>
 */
final class Clock implements ClockInterface
{
    private static ClockInterface $globalClock;

    public function __construct(
        private readonly ?PsrClockInterface $clock = null,
        private ?\DateTimeZone $timezone = null,
    ) {
    }

    /**
     * Returns the current global clock.
     *
     * Note that you should prefer injecting a ClockInterface or using
     * ClockAwareTrait when possible instead of using this method.
     */
    public static function get(): ClockInterface
    {
        return self::$globalClock ??= new NativeClock();
    }

    public static function set(PsrClockInterface $clock): void
    {
        self::$globalClock = $clock instanceof ClockInterface ? $clock : new self($clock);
    }

    public function now(): DatePoint
    {
        $now = ($this->clock ?? self::get())->now();

        if (!$now instanceof DatePoint) {
            $now = DatePoint::createFromInterface($now);
        }

        return isset($this->timezone) ? $now->setTimezone($this->timezone) : $now;
    }

    public function sleep(float|int $seconds): void
    {
        $clock = $this->clock ?? self::get();

        if ($clock instanceof ClockInterface) {
            $clock->sleep($seconds);
        } else {
            (new NativeClock())->sleep($seconds);
        }
    }

    /**
     * @throws \DateInvalidTimeZoneException When $timezone is invalid
     */
    public function withTimeZone(\DateTimeZone|string $timezone): static
    {
        if (\PHP_VERSION_ID >= 80300 && \is_string($timezone)) {
            $timezone = new \DateTimeZone($timezone);
        } elseif (\is_string($timezone)) {
            try {
                $timezone = new \DateTimeZone($timezone);
            } catch (\Exception $e) {
                throw new \DateInvalidTimeZoneException($e->getMessage(), $e->getCode(), $e);
            }
        }

        $clone = clone $this;
        $clone->timezone = $timezone;

        return $clone;
    }
}

Directory Contents

Dirs: 2 × Files: 12

Name Size Perms Modified Actions
Resources DIR
- drwxrwxrwx 2025-09-17 06:53:24
Edit Download
Test DIR
- drwxrwxrwx 2025-09-17 06:53:24
Edit Download
497 B lrw-rw-rw- 2025-09-17 06:53:24
Edit Download
2.31 KB lrw-rw-rw- 2025-09-17 06:53:24
Edit Download
841 B lrw-rw-rw- 2025-09-17 06:53:24
Edit Download
559 B lrw-rw-rw- 2025-09-17 06:53:24
Edit Download
874 B lrw-rw-rw- 2025-09-17 06:53:24
Edit Download
5.42 KB lrw-rw-rw- 2025-09-17 06:53:24
Edit Download
9.15 KB lrw-r--r-- 2026-04-27 08:45:01
Edit Download
1.04 KB lrw-rw-rw- 2025-09-17 06:53:24
Edit Download
3.12 KB lrw-rw-rw- 2025-09-17 06:53:24
Edit Download
2.61 KB lrw-rw-rw- 2025-09-17 06:53:24
Edit Download
1.76 KB lrw-rw-rw- 2025-09-17 06:53:24
Edit Download
1.17 KB lrw-rw-rw- 2025-09-17 06:53:24
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).