MailPoet\EmailEditor\Validator\Schema

Array_Schema::uniqueItems()publicWC 1.0

Sets the uniqueItems property to true.

Method of the class: Array_Schema{}

No Hooks.

Return

null. Nothing (null).

Usage

$Array_Schema = new Array_Schema();
$Array_Schema->uniqueItems(): self;

Array_Schema::uniqueItems() code WC 9.8.1

public function uniqueItems(): self {
	return $this->update_schema_property( 'uniqueItems', true );
}