<?php
namespace Spatie\FlareClient\Time;
use DateTimeImmutable;
class SystemTime implements Time
{
public function getCurrentTime(): int
{
return (new DateTimeImmutable())->getTimestamp();
}
}
To ensure a smooth integration process and optimal performance, follow these best practices: