Automattic\WooCommerce\EmailEditor\Validator\Schema

Integer_Schema::multipleOfpublicWC 1.0

Sets the multipleOf property.

Метод класса: Integer_Schema{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$Integer_Schema = new Integer_Schema();
$Integer_Schema->multipleOf( $value ): self;
$value(int) (обязательный)
Multiple of the integer.

Код Integer_Schema::multipleOf() WC 10.0.2

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