get_ui_elements() public method

Which UI elements should we show on the settings page for this integration?
public get_ui_elements ( ) : array
return array
 /**
  * @return array
  */
 public function get_ui_elements()
 {
     return parent::get_ui_elements();
 }
 /**
  * @since 3.0
  * @return array
  */
 public function get_ui_elements()
 {
     return array_diff(parent::get_ui_elements(), array('enabled', 'implicit'));
 }
 /**
  * @since 3.0
  * @return array
  */
 public function get_ui_elements()
 {
     return array_diff(parent::get_ui_elements(), array('enabled', 'implicit', 'precheck', 'css', 'label'));
 }