PluginProbe
ActivityPub / 8.0.2
ActivityPub v8.0.2
9.3.1 9.3.0 9.2.2 9.2.1 9.2.0 9.1.0 9.0.2 9.0.1 9.0.0 8.3.0 8.2.1 8.2.0 8.1.1 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9 1.1.0 1.2.0 1.3.0 2.0.0 2.0.1 2.1.0 2.1.1 All 160 releases
← All changes | includes/class-cli.php +0 -9 8.2.18.0.2 View file →
@@ -30,9 +30,8 @@
30 30 * - wp activitypub cache <clear|status> [--type=<type>]
31 31 * - wp activitypub self-destruct [--status] [--yes]
32 32 * - wp activitypub move <from> <to>
33 33 * - wp activitypub follow <remote_user>
34 - * - wp activitypub stats <collect|compile|send>
35 34 * - wp activitypub fetch <url>
36 35 */
37 36 public static function register() {
38 37 // Register parent command with version subcommand.
@@ -112,16 +111,8 @@
112 111 'activitypub fetch',
113 112 '\Activitypub\Cli\Fetch_Command',
114 113 array(
115 114 'shortdesc' => 'Fetch a remote URL with a signed ActivityPub request.',
116 - )
117 - );
118 -
119 - \WP_CLI::add_command(
120 - 'activitypub stats',
121 - '\Activitypub\Cli\Stats_Command',
122 - array(
123 - 'shortdesc' => 'Manage ActivityPub statistics (collect, compile or send).',
124 115 )
125 116 );
126 117 }
127 118 }