WP_CLI\Loggers

Regular::__construct()publicWP-CLI 1.0

Method of the class: Regular{}

No Hooks.

Return

null. Nothing (null).

Usage

$Regular = new Regular();
$Regular->__construct( $in_color );
$in_color(true|false) (required)
Whether or not to Colorize strings.

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

public function __construct( $in_color ) {
	$this->in_color = $in_color;
}