관리-도구
편집 파일: SystemTime.php
<?php namespace Facade\FlareClient\Time; use DateTimeImmutable; class SystemTime implements Time { public function getCurrentTime(): int { return (new DateTimeImmutable())->getTimestamp(); } }