HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux spn-python 5.15.0-89-generic #99-Ubuntu SMP Mon Oct 30 20:42:41 UTC 2023 x86_64
User: arjun (1000)
PHP: 8.1.2-1ubuntu2.20
Disabled: NONE
Upload Files
File: /var/www/html/triad-infosec/wp-content/plugins/autoptimize/classes/autoptimizeCLI.php
<?php
/**
 * WP-CLI commands for Autoptimize.
 */

if ( ! defined( 'ABSPATH' ) ) {
    exit;
}

// This is a WP-CLI command, so bail if it's not available.
if ( ! defined( 'WP_CLI' ) ) {
    return;
}

class autoptimizeCLI extends \WP_CLI_Command
{
    /**
     * Clears the cache.
     *
     * @subcommand clear
     *
     * @param array $args Args.
     * @param array $args_assoc Associative args.
     *
     * @return void
     */
    public function clear( $args, $args_assoc ) {
        WP_CLI::line( esc_html__( 'Flushing the cache...', 'autoptimize' ) );
        autoptimizeCache::clearall();
        WP_CLI::success( esc_html__( 'Cache flushed.', 'autoptimize' ) );
    }
}

WP_CLI::add_command( 'autoptimize', 'autoptimizeCLI' );