Automattic\WooCommerce\Admin\Features\Navigation

RemovedDeprecated::__callStatic()public staticWC 1.0

Handle static calls to deprecated methods.

Method of the class: RemovedDeprecated{}

No Hooks.

Return

null. Nothing (null).

Usage

$result = RemovedDeprecated::__callStatic( $name, $arguments );
$name(string) (required)
The name of the deprecated method.
$arguments(array) (required)
The arguments passed to the deprecated method.

RemovedDeprecated::__callStatic() code WC 9.7.1

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