HEX
Server: LiteSpeed
System: Linux premium321.web-hosting.com 4.18.0-553.50.1.lve.el8.x86_64 #1 SMP Thu Apr 17 19:10:24 UTC 2025 x86_64
User: paksjuts (1314)
PHP: 8.1.33
Disabled: NONE
Upload Files
File: /home/paksjuts/apkhoop.com/wp-content/plugins/vibes/perfopsone/class-upgraderskin.php
<?php
/**
 * Standard PerfOps One installation skin handling.
 *
 * @package PerfOpsOne
 * @author  Pierre Lannoy <https://pierre.lannoy.fr/>.
 * @since   2.0.0
 */

namespace PerfOpsOne;

/**
 * Standard PerfOps One installation skin handling.
 *
 * This class defines all code necessary to initialize and handle PerfOps One plugins installation skin.
 *
 * @package Plugin
 * @author  Pierre Lannoy <https://pierre.lannoy.fr/>.
 * @since   2.2.0
 */

if ( ! class_exists( 'PerfOpsOne\UpgraderSkin' ) ) {
	class UpgraderSkin extends \WP_Upgrader_Skin {

		/**
		 * @since 2.2.0
		 *
		 * @param string|WP_Error $errors Errors.
		 */
		public function feedback( $string, ...$args ) {
			/* no output */
		}
	}
}