mixed) $options */ public function __construct( array $options = array() ) { $this->indentXml = false; $this->failOnError = true; parent::__construct( $options ); } /** * Sets the option $name to $value. * * @throws ezcBasePropertyNotFoundException * if the property $name is not defined * @throws ezcBaseValueException * if $value is not correct for the property $name * @param string $name * @param mixed $value * @ignore */ public function __set( $name, $value ) { switch ( $name ) { case 'indentXml': case 'failOnError': if ( !is_bool( $value ) ) { throw new ezcBaseValueException( $name, $value, 'bool' ); } $this->properties[$name] = (bool) $value; break; default: parent::__set( $name, $value ); } } } ?>