Example #1
0
 /**
  * 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);
 }