コード例 #1
0
ファイル: bullet.php プロジェクト: jordanmanning/ezpublish
 /**
  * Returns the value of the property $name.
  *
  * @throws ezcBasePropertyNotFoundException if the property does not exist.
  * @param string $name
  * @ignore
  */
 public function __get($name)
 {
     if (array_key_exists($name, $this->properties)) {
         return $this->properties[$name];
     }
     return parent::__get($name);
 }