Files
tryno10/app/code/vendor/facade/flare-client-php/src/Time/SystemTime.php
T
2022-04-07 16:21:17 +05:30

14 lines
216 B
PHP

<?php
namespace Facade\FlareClient\Time;
use DateTimeImmutable;
class SystemTime implements Time
{
public function getCurrentTime(): int
{
return (new DateTimeImmutable())->getTimestamp();
}
}