Automattic\WooCommerce\EmailEditor\Validator\Schema

Object_Schema::maxPropertiespublicWC 1.0

Sets the maximum number of properties in the object.

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

Хуков нет.

Возвращает

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

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

$Object_Schema = new Object_Schema();
$Object_Schema->maxProperties( $value ): self;
$value(int) (обязательный)
Maximum number of properties in the object.

Код Object_Schema::maxProperties() WC 10.0.2

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