WP_CLI

Runner::in_color()publicWP-CLI 1.0

Whether or not the output should be rendered in color

Method of the class: Runner{}

No Hooks.

Return

true|false.

Usage

$Runner = new Runner();
$Runner->in_color();

Runner::in_color() code WP-CLI 2.8.0-alpha

public function in_color() {
	return $this->colorize;
}