Action_Scheduler\WP_CLI
ProgressBar::set_message()
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() ProgressBar::set message code WC 9.3.3
public function set_message( $message ) { $this->message = $message; }