Esempio n. 1
0
 /**
  * Does the object exist?
  *
  * @return NULL
  */
 public function exists()
 {
     if ($this->_exists === null) {
         $this->_exists = $this->_object->exists();
     }
     return $this->_exists;
 }
Esempio n. 2
0
File: Hash.php Progetto: horde/horde
 /**
  * Does the object exist?
  *
  * @return NULL
  */
 public function exists()
 {
     return $this->_object->exists();
 }