WP_CLI

ProcessRun::__construct()publicWP-CLI 1.0

Method of the class: ProcessRun{}

No Hooks.

Return

null. Nothing (null).

Usage

$ProcessRun = new ProcessRun();
$ProcessRun->__construct( $props );
$props(array) (required)
Properties of executed command.

ProcessRun::__construct() code WP-CLI 2.8.0-alpha

public function __construct( $props ) {
	foreach ( $props as $key => $value ) {
		$this->$key = $value;
	}
}