Automattic\WooCommerce\EmailEditor\Validator\Schema

Number_Schema::multipleOfpublicWC 1.0

Sets the multipleOf property.

Method of the class: Number_Schema{}

No Hooks.

Returns

null. Nothing (null).

Usage

$Number_Schema = new Number_Schema();
$Number_Schema->multipleOf( $value ): self;
$value(float) (required)
Multiple of the number.

Number_Schema::multipleOf() code WC 10.6.2

public function multipleOf( float $value ): self {
	return $this->update_schema_property( 'multipleOf', $value );
}