Esempio n. 1
0
 /**
  * Disables the specified module.
  *
  * @param string $slug
  *
  * @return bool
  */
 public function disable($slug)
 {
     return $this->repository->disable($slug);
 }
Esempio n. 2
0
 /**
  * Set the given cache key value.
  *
  * @param  string  $key
  * @param  mixed  $value
  * @return int
  */
 public function setCache($key, $value)
 {
     return $this->repository->setCache($key, $value);
 }