lifetime; } public function getKey($id = null) { return "help:{$id}"; } public function getContent($id = null) { $helpRepo = new HelpRepo(); $help = $helpRepo->findById($id); return $help ?: null; } }