mixed) $options */ public function __construct( array $options = array() ) { $this->wordWrap = 78; 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 'wordWrap': if ( !is_numeric( $value ) ) { throw new ezcBaseValueException( $name, $value, 'int' ); } $this->properties[$name] = (int) $value; break; default: parent::__set( $name, $value ); } } } ?>