Automattic\WooCommerce\EmailEditor\Validator\Schema
Object_Schema::minProperties
Sets the minimum number of properties in the object.
Метод класса: Object_Schema{}
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
$Object_Schema = new Object_Schema(); $Object_Schema->minProperties( $value ): self;
- $value(int) (обязательный)
- Minimum number of properties in the object.
Код Object_Schema::minProperties() Object Schema::minProperties WC 10.0.2
public function minProperties( int $value ): self { return $this->update_schema_property( 'minProperties', $value ); }