Beispiel #1
0
 /**
  * Deletes a Kohana Response entry from cache.
  *
  *     // Delete a response from the decorator
  *     $decorator->delete('foobar');
  *
  * @param   string   key 
  * @return  boolean
  */
 public function delete($key)
 {
     return $this->_cache->delete($key);
 }
Beispiel #2
0
 public function delete($id)
 {
     return parent::delete($id);
 }