Automattic\WooCommerce\EmailEditor\Validator\Schema
Integer_Schema::exclusiveMinimum
Sets the exclusiveMinimum property to true.
Method of the class: Integer_Schema{}
No Hooks.
Returns
null. Nothing (null).
Usage
$Integer_Schema = new Integer_Schema(); $Integer_Schema->exclusiveMinimum( $value ): self;
- $value(int) (required)
- Minimum value of the integer.
Integer_Schema::exclusiveMinimum() Integer Schema::exclusiveMinimum code WC 10.6.2
public function exclusiveMinimum( int $value ): self {
return $this->update_schema_property( 'minimum', $value )
->update_schema_property( 'exclusiveMinimum', true );
}