Files
apimacro/vendor/facade/flare-client-php/src/Time/SystemTime.php

14 lines
216 B
PHP
Raw Normal View History

2024-05-07 12:17:25 +02:00
<?php
namespace Facade\FlareClient\Time;
use DateTimeImmutable;
class SystemTime implements Time
{
public function getCurrentTime(): int
{
return (new DateTimeImmutable())->getTimestamp();
}
}