lifetime; } public function getKey($id = null) { return "category:{$id}"; } public function getContent($id = null) { $categoryRepo = new CategoryRepo(); $category = $categoryRepo->findById($id); return $category ?: null; } }