Automattic\WooCommerce\EmailEditor\Validator\Schema

Integer_Schema::minimumpublicWC 1.0

Sets the minimum value of the integer.

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

Хуков нет.

Возвращает

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

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

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

Код Integer_Schema::minimum() WC 10.0.2

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