docs_overview = $docs_overview; } /** * Get the events to subscribe to. * * @return array */ public static function get_subscribed_events(): array { return [ 'wp_abilities_api_init' => 'register_abilities', ]; } /** * Register MCP abilities * * @return void */ public function register_abilities(): void { $this->docs_overview->register(); } }