Automattic\WooCommerce\Admin\Features\Navigation

RemovedDeprecated::__call()publicWC 1.0

Handle calls to deprecated methods.

Method of the class: RemovedDeprecated{}

No Hooks.

Return

null. Nothing (null).

Usage

$RemovedDeprecated = new RemovedDeprecated();
$RemovedDeprecated->__call( $name, $arguments );
$name(string) (required)
The name of the deprecated method.
$arguments(array) (required)
The arguments passed to the deprecated method.

RemovedDeprecated::__call() code WC 9.7.1

public function __call( $name, $arguments ) {
	self::handle_deprecated_method_call( $name );
}