WP_CLI\Loggers

Execution::ob_end()publicWP-CLI 1.0

To match ob_start() above. Does anob_end_flush()`.

Method of the class: Execution{}

No Hooks.

Returns

null. Nothing (null).

Usage

$Execution = new Execution();
$Execution->ob_end();

Execution::ob_end() code WP-CLI 2.8.0-alpha

public function ob_end() {
	ob_end_flush();
}