Example #1
0
 /**
  * Delete a key.
  * 
  * This method returns true on success and false on failure.
  * If the key does not exist, it should return false.
  * 
  * @param string $key
  * @return bool
  */
 public function delete($key)
 {
     return Storage::delete($this->_getFilename($key));
 }