MailPoet\EmailEditor\Validator

Schema::title()publicWC 1.0

Set the title of the schema.

Method of the class: Schema{}

No Hooks.

Return

static.

Usage

$Schema = new Schema();
$Schema->title( $title );
$title(string) (required)
Title.

Schema::title() code WC 9.8.1

public function title( string $title ) {
	return $this->update_schema_property( 'title', $title );
}