Beispiel #1
0
 /**
  * Connect to the Cache
  *
  * @param   array $options
  *
  * @return  $this
  * @since   1.0.0
  */
 public function connect($options = array())
 {
     parent::connect($options);
     $this->cache_folder = null;
     if (isset($options['cache_folder'])) {
         $this->cache_folder = $options['cache_folder'];
     }
     $this->createFolder();
     return $this;
 }
Beispiel #2
0
 /**
  * Connect to Cache
  *
  * @param   array $options
  *
  * @return  $this
  * @since   1.0.0
  */
 public function connect($options = array())
 {
     parent::connect($options);
     $this->cache_container = array();
     return $this;
 }
Beispiel #3
0
 /**
  * Connect to Cache
  *
  * @param   array $options
  *
  * @return  $this
  * @since   1.0.0
  */
 public function connect($options = array())
 {
     parent::connect($options);
     return $this;
 }