You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
433 B
PHP
21 lines
433 B
PHP
<?php
|
|
namespace DeployerForGit;
|
|
|
|
require_once ABSPATH . 'wp-admin/includes/class-wp-upgrader-skin.php';
|
|
|
|
/**
|
|
* Class WPUpgraderSkin
|
|
*
|
|
* @package DeployerForGit
|
|
*/
|
|
class WPUpgraderSkin extends \WP_Upgrader_Skin {
|
|
|
|
/**
|
|
* Override feedback method with empty function.
|
|
*
|
|
* @param string $feedback Message data.
|
|
* @param mixed ...$args Optional text replacements.
|
|
*/
|
|
public function feedback( $feedback, ...$args ) {}
|
|
}
|