Automattic\WooCommerce\Admin\Features\Navigation

RemovedDeprecated::__callStatic()public staticWC 1.0

Handle static calls to deprecated methods.

Метод класса: RemovedDeprecated{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$result = RemovedDeprecated::__callStatic( $name, $arguments );
$name(строка) (обязательный)
The name of the deprecated method.
$arguments(массив) (обязательный)
The arguments passed to the deprecated method.

Код RemovedDeprecated::__callStatic() WC 9.7.1

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