lifetime; } public function getKey($id = null) { return "topic:{$id}"; } public function getContent($id = null) { $topicRepo = new TopicRepo(); $topic = $topicRepo->findById($id); return $topic ?: null; } }