/** * saves the definitions to cache */ public function saveToCache() { $this->cache->set("container", serialize($this->definitions)); }
/** * saves the routes to cache */ public function saveToCache() { $this->cache->set("routes", serialize($this->routes)); }
/** * saves the parameters to cache */ public function saveToCache() { $this->cache->set("config", serialize($this->parameters)); }