mixed) $options */ public function __construct( array $options = array() ) { $this->properties['failForRegexp'] = null; $this->properties['failingOperations'] = 0; $this->properties['lockFile'] = null; 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 * @return void * @ignore */ public function __set( $name, $value ) { switch ( $name ) { case 'failForRegexp': if ( !is_string( $value ) ) { throw new ezcBaseValueException( $name, $value, 'regular expression' ); } $this->properties[$name] = $value; break; case 'failingOperations': if ( !is_int( $value ) ) { throw new ezcBaseValueException( $name, $value, 'integer' ); } $this->properties[$name] = $value; break; case 'lockFile': if ( !is_string( $value ) || !is_writeable( dirname( $value ) ) ) { throw new ezcBaseValueException( $name, $value, 'writable file name' ); } $this->properties[$name] = $value; break; default: throw new ezcBasePropertyNotFoundException( $name ); } } } ?>