Action_Scheduler\Migration

Config::set_dry_run()publicWC 1.0

Set flag indicating whether it's a dry run.

Method of the class: Config{}

No Hooks.

Return

null. Nothing (null).

Usage

$Config = new Config();
$Config->set_dry_run( $dry_run );
$dry_run(true|false) (required)
-

Config::set_dry_run() code WC 8.7.0

public function set_dry_run( $dry_run ) {
	$this->dry_run = (bool) $dry_run;
}