Automattic\WooCommerce\EmailEditor\Validator\Schema

String_Schema::minLengthpublicWC 1.0

Set minimum length of the string.

Method of the class: String_Schema{}

No Hooks.

Returns

null. Nothing (null).

Usage

$String_Schema = new String_Schema();
$String_Schema->minLength( $value ): self;
$value(int) (required)
Minimum length.

String_Schema::minLength() code WC 10.4.3

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