Action_Scheduler\WP_CLI

ProgressBar::set_message()publicWC 1.0

Set the message used when creating the progress bar.

Method of the class: ProgressBar{}

No Hooks.

Return

null. Nothing (null).

Usage

$ProgressBar = new ProgressBar();
$ProgressBar->set_message( $message );
$message(string) (required)
The message to be used when the next progress bar is created.

ProgressBar::set_message() code WC 8.7.0

public function set_message( $message ) {
	$this->message = $message;
}