WP_CLI

Completions::render()publicWP-CLI 1.0

Render the stored options.

Method of the class: Completions{}

No Hooks.

Return

null. Nothing (null).

Usage

$Completions = new Completions();
$Completions->render();

Completions::render() code WP-CLI 2.8.0-alpha

public function render() {
	foreach ( $this->opts as $opt ) {
		WP_CLI::line( $opt );
	}
}