コード例 #1
0
ファイル: Mcached.php プロジェクト: horde/horde
 /**
  * Delete this object.
  *
  * @return NULL
  *
  * @throws Horde_Kolab_Server_Exception If deleting the object failed.
  */
 public function delete()
 {
     $this->_object->delete();
     /** Mark the object as missing */
     $this->_exists = false;
     /**
      * Throw away the cache data to ensure it gets refetched in case we need
      * to access it again
      */
     $this->_cache_ext = array();
     $this->_cache_int = array();
 }
コード例 #2
0
ファイル: Hash.php プロジェクト: horde/horde
 /**
  * Delete this object.
  *
  * @return NULL
  *
  * @throws Horde_Kolab_Server_Exception If deleting the object failed.
  */
 public function delete()
 {
     $this->_object->delete();
 }