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