Files
websdev.gconex.com/wp-content/plugins/deployer-for-git/includes/WPUpgraderSkin.php
2024-04-08 12:13:55 -04:00

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 ) {}
}