MailPoet\EmailEditor\Validator\Schema

Integer_Schema::exclusiveMaximum()publicWC 1.0

Sets the exclusiveMaximum property to true.

Method of the class: Integer_Schema{}

No Hooks.

Return

null. Nothing (null).

Usage

$Integer_Schema = new Integer_Schema();
$Integer_Schema->exclusiveMaximum( $value ): self;
$value(int) (required)
Maximum value of the integer.

Integer_Schema::exclusiveMaximum() code WC 9.8.1

public function exclusiveMaximum( int $value ): self {
	return $this->update_schema_property( 'maximum', $value )
	->update_schema_property( 'exclusiveMaximum', true );
}