get_option( $this->get_payment_method_id() . '_gift_card_max_amount_updated', false ) ) { $this->update_option( 'max_amount', '' ); $this->update_option( $this->get_payment_method_id() . '_gift_card_max_amount_updated', '1' ); $this->max_amount = ''; } } /** * @param WC_Order $order * @return bool */ public function can_refund_order( $order ): bool { return false; } /** * Return if payment component is enabled. * * @return bool */ public function is_payment_component_enabled(): bool { return false; } }