WP_CLI
Completions::render
Render the stored options.
Method of the class: Completions{}
No Hooks.
Returns
null. Nothing (null).
Usage
$Completions = new Completions(); $Completions->render();
Completions::render() Completions::render code WP-CLI 2.13.0-alpha
public function render() {
foreach ( $this->opts as $opt ) {
WP_CLI::line( $opt );
}
}