wenpai.org/wp-content/plugins/plat-gp-customizations/inc/cli/class-stats-print.php
2024-06-21 23:57:39 +08:00

14 lines
No EOL
238 B
PHP

<?php
namespace WordPressdotorg\GlotPress\Customizations\CLI;
use WP_CLI;
use WP_CLI_Command;
class Stats_Print extends WP_CLI_Command {
public function __invoke( $args, $assoc_args ) {
$stats = new Stats();
$stats( true );
}
}