Your IP : 216.73.217.77


Current Path : /home/users/unlimited/www/api.xalonx.com/vendor/spatie/flare-client-php/src/Time/
Upload File :
Current File : /home/users/unlimited/www/api.xalonx.com/vendor/spatie/flare-client-php/src/Time/SystemTime.php

<?php

namespace Spatie\FlareClient\Time;

use DateTimeImmutable;

class SystemTime implements Time
{
    public function getCurrentTime(): int
    {
        return (new DateTimeImmutable())->getTimestamp();
    }
}