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