Automattic\WooCommerce\EmailEditor\Validator\Schema
Object_Schema::minProperties
Sets the minimum number of properties in the object.
Method of the class: Object_Schema{}
No Hooks.
Returns
null. Nothing (null).
Usage
$Object_Schema = new Object_Schema(); $Object_Schema->minProperties( $value ): self;
- $value(int) (required)
- Minimum number of properties in the object.
Object_Schema::minProperties() Object Schema::minProperties code WC 10.6.2
public function minProperties( int $value ): self {
return $this->update_schema_property( 'minProperties', $value );
}