setCurrentTime($dateTime, $format); return; } $this->dateTime = new DateTimeImmutable(); } public function getCurrentTime(): int { return $this->dateTime->getTimestamp(); } public function setCurrentTime(string $dateTime, $format = 'Y-m-d H:i:s') { $this->dateTime = DateTimeImmutable::createFromFormat($format, $dateTime); } }