コード例 #1
0
ファイル: Mcached.php プロジェクト: horde/horde
 /**
  * Does the object exist?
  *
  * @return NULL
  */
 public function exists()
 {
     if ($this->_exists === null) {
         $this->_exists = $this->_object->exists();
     }
     return $this->_exists;
 }
コード例 #2
0
ファイル: Hash.php プロジェクト: horde/horde
 /**
  * Does the object exist?
  *
  * @return NULL
  */
 public function exists()
 {
     return $this->_object->exists();
 }