Esempio n. 1
0
 /**
  * Returns true if the property $name is set, otherwise false.
  *
  * @param string $name
  * @return bool
  * @ignore
  */
 public function __isset($name)
 {
     switch ($name) {
         default:
             return parent::__isset($name);
     }
 }
Esempio n. 2
0
 /**
  * Returns true if the property $name is set, otherwise false.
  *
  * @param string $name
  * @return bool
  * @ignore
  */
 public function __isset($name)
 {
     switch ($name) {
         case 'contents':
             return isset($this->properties[$name]);
         default:
             return parent::__isset($name);
     }
 }