'GET', 'callback' => array( $this, 'get_diagnostics' ), 'permission_callback' => array( $this, 'check_permissions' ), ) ); } /** * Processes a REST GET request and returns the current diagnostics. * * @param WP_REST_Request $request * * @return WP_REST_Response|mixed */ public function get_diagnostics( WP_REST_Request $request ) { return $this->rest_ensure_response( 'get', static::name(), array( 'diagnostics' => $this->as3cf->output_diagnostic_info(), ) ); } }