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