Action_Scheduler\Migration
Config::set_dry_run()
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)
- Dry run toggle.
Config::set_dry_run() Config::set dry run code WC 9.6.1
public function set_dry_run( $dry_run ) { $this->dry_run = (bool) $dry_run; }