# autoptimize/3.1.7/classes/autoptimizeCLI.php

Autoptimize, version 3.1.7. 35 lines.

- Page: https://pluginprobe.com/plugins/autoptimize/3.1.7/code/classes/autoptimizeCLI.php
- Raw: https://pluginprobe.com/plugins/autoptimize/3.1.7/raw/classes/autoptimizeCLI.php
- Modified: 2018-06-14T12:51:50+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/autoptimize/3.1.7/code/classes/autoptimizeCLI.php#L10-L20`.

```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' );

```
