WP_CLI

NoOp::__call()publicWP-CLI 1.0

Method of the class: NoOp{}

No Hooks.

Return

null. Nothing (null).

Usage

$NoOp = new NoOp();
$NoOp->__call( $method, $args );
$method (required)
-
$args (required)
-

NoOp::__call() code WP-CLI 2.8.0-alpha

public function __call( $method, $args ) {
	// do nothing
}