Automattic\WooCommerce\Admin
DeprecatedClassFacade::log_deprecation() private WC 1.0
Log a deprecation to the error log.
{} Это метод класса: DeprecatedClassFacade{}
Хуков нет.
Возвращает
Null. Ничего.
Использование
$result = DeprecatedClassFacade::log_deprecation( $function );
- $function(строка) (обязательный)
- The name of the deprecated function being called.
Код DeprecatedClassFacade::log_deprecation() DeprecatedClassFacade::log deprecation WC 5.0.0
private static function log_deprecation( $function ) {
error_log( // phpcs:ignore
sprintf(
'%1$s is deprecated since version %2$s! Use %3$s instead.',
static::class . '::' . $function,
static::$deprecated_in_version,
static::$facade_over_classname . '::' . $function
)
);
}