Skip to content

Commit

Permalink
adding linebreaks and superfluous swiftlint:disable
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Guretzki committed Jan 15, 2025
1 parent 4f3a04d commit f1152a4
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 7 deletions.
9 changes: 6 additions & 3 deletions AdyenActions/AdyenActionComponent.swift
Original file line number Diff line number Diff line change
Expand Up @@ -78,10 +78,13 @@ public final class AdyenActionComponent: ActionComponent, ActionHandlingComponen
public var callbackAppScheme: String

/// The issuer number of the highest scheme you listed under `LSApplicationQueriesSchemes`.
/// E.g. pass 39, if you listed all schemes from "twint-issuer1" up to and including "twint-issuer39". The value is clamped between 0 and 39.
/// E.g. pass 39, if you listed all schemes from "twint-issuer1" up to and including "twint-issuer39".
/// The value is clamped between 0 and 39.
///
/// - Important: All apps above "twint-issuer39" will always be returned if one of these apps is installed. For this to work, `LSApplicationQueriesSchemes` must include "twint-extended".
/// If you configure any `maxIssuerNumber` below 39, the result will always contain all apps above `maxIssuerNumber` up to and including 39, even if none of them are installed.
/// - Important: All apps above "twint-issuer39" will always be returned if one of these apps is installed.
/// For this to work, `LSApplicationQueriesSchemes` must include "twint-extended".
/// If you configure any `maxIssuerNumber` below 39, the result will always contain all apps above `maxIssuerNumber`
/// up to and including 39, even if none of them are installed.
/// Additionally, if the fetch fails and the cache is empty, none of these apps will be found when probing.
public var maxIssuerNumber: Int

Expand Down
9 changes: 6 additions & 3 deletions AdyenActions/Components/SDK/TwintSDKActionComponent.swift
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,13 @@ import Foundation
public let callbackAppScheme: String

/// The issuer number of the highest scheme you listed under `LSApplicationQueriesSchemes`.
/// E.g. pass 39, if you listed all schemes from "twint-issuer1" up to and including "twint-issuer39". The value is clamped between 0 and 39.
/// E.g. pass 39, if you listed all schemes from "twint-issuer1" up to and including "twint-issuer39".
/// The value is clamped between 0 and 39.
///
/// - Important: All apps above "twint-issuer39" will always be returned if one of these apps is installed. For this to work, `LSApplicationQueriesSchemes` must include "twint-extended".
/// If you configure any `maxIssuerNumber` below 39, the result will always contain all apps above `maxIssuerNumber` up to and including 39, even if none of them are installed.
/// - Important: All apps above "twint-issuer39" will always be returned if one of these apps is installed.
/// For this to work, `LSApplicationQueriesSchemes` must include "twint-extended".
/// If you configure any `maxIssuerNumber` below 39, the result will always contain all apps above `maxIssuerNumber`
/// up to and including 39, even if none of them are installed.
/// Additionally, if the fetch fails and the cache is empty, none of these apps will be found when probing.
public let maxIssuerNumber: Int

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ internal protocol DelegatedAuthenticationViewDelegate: AnyObject {
}

@available(iOS 16.0, *)
// swiftlint:disable:next type_body_length
internal final class DelegatedAuthenticationView: UIView {

private enum Constants {
Expand Down

0 comments on commit f1152a4

Please sign in to comment.