HEX
Server: Apache
System: Linux efa57bbe-abb1-400d-2985-3b056fbc2701.secureserver.net 6.1.147-1.el9.elrepo.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Jul 24 12:33:32 EDT 2025 x86_64
User: root (0)
PHP: 8.0.30.4
Disabled: NONE
Upload Files
File: /var/www/wp-content/mu-plugins/gd-system-plugin/includes/class-cli.php
<?php

namespace WPaaS;

use \WP_CLI;

if ( ! defined( 'ABSPATH' ) ) {

	exit;

}

final class CLI {

	/**
	 * Class constructor.
	 */
	public function __construct() {

		$commands = [
			'cache' => '\WPaaS\CLI\Cache',
			'hmt'   => '\WPaaS\CLI\HMT',
		];

		foreach ( $commands as $command => $class ) {

			unset( $commands[ $command ] );

			$commands[ Plugin::cli_command( $command, [], false ) ] = $class;

			if ( 'wpaas' !== Plugin::cli_base_command() ) {

				$commands[ "wpaas {$command}" ] = $class;

			}

		}

		// Custom subcommand for a default command
		$commands['cron event wpaas'] = '\WPaaS\CLI\Cron_Event';

		/**
		 * Filter the default custom WP-CLI commands.
		 *
		 * @since 2.0.0
		 *
		 * @var array
		 */
		$commands = (array) apply_filters( 'wpaas_cli_commands', $commands );

		$this->register( $commands );

	}

	/**
	 * Register custom WP-CLI commands.
	 *
	 * @param  array $commands
	 *
	 * @return array|bool
	 */
	private function register( array $commands ) {

		if ( ! $commands || ! is_array( $commands ) ) {

			return false;

		}

		$registered = [];

		foreach ( $commands as $command => $class ) {

			if ( ! class_exists( $class ) ) {

				continue;

			}

			WP_CLI::add_command( $command, $class );

			$registered[ $command ] = $class;

		}

		return ( $registered ) ? $registered : false;

	}

}