示例#1
0
 /**
  * Test existence of a manifest option
  *
  * @param string $name
  * @return bool
  */
 public final function __isset($name)
 {
     $result = false;
     if ($this->__manifest !== false) {
         $result = $this->__manifest->has($name);
     }
     return $result;
 }