MailPoet\EmailEditor\Validator

Schema::unset_schema_property()protectedWC 1.0

Unsets the schema property.

Method of the class: Schema{}

No Hooks.

Return

static.

Usage

// protected - for code of main (parent) or child class
$result = $this->unset_schema_property( $name );
$name(string) (required)
Property name.

Schema::unset_schema_property() code WC 9.8.1

protected function unset_schema_property( string $name ) {
	$clone = clone $this;
	unset( $clone->schema[ $name ] );
	return $clone;
}