Automattic\WooCommerce\Admin\Features\Navigation

RemovedDeprecated::__call()publicWC 1.0

Handle calls to deprecated methods.

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

Хуков нет.

Возвращает

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

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

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

Код RemovedDeprecated::__call() WC 9.7.1

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