MailPoet\EmailEditor\Validator\Schema
Integer_Schema::multipleOf()
Sets the multipleOf property.
Method of the class: Integer_Schema{}
No Hooks.
Return
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 9.8.2
public function multipleOf( int $value ): self { return $this->update_schema_property( 'multipleOf', $value ); }