0) { $this->expiredTime = time() + $ttl; } } public function getData() { return $this->data; } public function isExpired(): bool { if (is_null($this->expiredTime)) { return false; } return time() > $this->expiredTime; } }