Your IP : 18.226.150.47


Current Path : /proc/self/root/home/lentoinv/lentoria.com/vendor/spatie/flare-client-php/src/Time/
Upload File :
Current File : //proc/self/root/home/lentoinv/lentoria.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();
    }
}

?>