MailPoet\EmailEditor\Validator\Schema
Number_Schema::multipleOf()
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() Number Schema::multipleOf code WC 9.8.2
public function multipleOf( float $value ): self { return $this->update_schema_property( 'multipleOf', $value ); }