cache)) { return $this->cache[$key]; } return null; } public function set($key, $value) { $this->cache[$key] = $value; } public function getCache() { return $this->cache; } }