ActionScheduler_Action::set_args()protectedWC 1.0

Set action's args.

Method of the class: ActionScheduler_Action{}

No Hooks.

Returns

null. Nothing (null).

Usage

// protected - for code of main (parent) or child class
$result = $this->set_args( $args );
$args(mixed[]) (required)
Action's arguments.

ActionScheduler_Action::set_args() code WC 9.8.4

protected function set_args( array $args ) {
	$this->args = $args;
}