/** * Returns the value of property $value. * * @throws ezcBasePropertyNotFoundException * if the property does not exist. * @param string $name * @return mixed * @ignore */ public function __get($name) { switch ($name) { case 'stream': return $this->properties[$name]; break; default: return parent::__get($name); break; } }
/** * Returns the value of property $value. * * @throws ezcBasePropertyNotFoundException * if the property does not exist. * @param string $name * @return mixed * @ignore */ public function __get($name) { switch ($name) { default: return parent::__get($name); break; } }