Action_Scheduler\WP_CLI
ProgressBar::set_message() public WC 1.0
Set the message used when creating the progress bar.
{} It's a method of the class: ProgressBar{}
No Hooks.
Return
Null. Nothing.
Usage
$ProgressBar = new ProgressBar(); $ProgressBar->set_message( $message );
- $message(string) (required)
- The message to be used when the next progress bar is created.
Code of ProgressBar::set_message() ProgressBar::set message WC 5.0.0
public function set_message( $message ) {
$this->message = $message;
}