diff --git a/includes/Classifai/Providers/AWS/Comprehend.php b/includes/Classifai/Providers/AWS/Comprehend.php deleted file mode 100644 index 71d884ddd..000000000 --- a/includes/Classifai/Providers/AWS/Comprehend.php +++ /dev/null @@ -1,83 +0,0 @@ -get_option_name(), $this->provider_service_name, '', $this->get_option_name() ); - add_settings_field( - 'url', - esc_html__( 'Endpoint URL', 'classifai' ), - [ $this, 'render_input' ], - $this->get_option_name(), - $this->get_option_name(), - [ - 'label_for' => 'url', - 'input_type' => 'text', - ] - ); - add_settings_field( - 'api-key', - esc_html__( 'API Key', 'classifai' ), - [ $this, 'render_input' ], - $this->get_option_name(), - $this->get_option_name(), - [ - 'label_for' => 'api_key', - 'input_type' => 'text', - ] - ); - } - - /** - * Sanitization - * - * @param array $settings The settings being saved. - * - * @return array|mixed - */ - public function sanitize_settings( $settings ) { - // TODO: Implement sanitize_settings() method. - return $settings; - } -}