MailPoet\EmailEditor\Validator\Schema

Number_Schema::multipleOf()publicWC 1.0

Sets the multipleOf property.

Method of the class: Number_Schema{}

No Hooks.

Return

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 9.8.2

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