From b5be51ada63767a414763fa334115b9eebdec3d9 Mon Sep 17 00:00:00 2001 From: Andrii Mamchenko Date: Thu, 28 Mar 2024 13:58:52 +0100 Subject: [PATCH] Use swiftformat command instead of a bash script to format the project (#1597) We aim to provide the same results for `swiftformat` running locally and on CI This change: - removes internal format.sh script usage and relies on `swiftformat` command itself that is running against project folder. By default it uses `.swiftformat.yml` and this is exact behavior that helps us to align with CI. - splits Lint and Format build phase script into two: SwiftLint and SwiftFormat. It could make CI debug easier - removes linting and formatting steps from all targets but `AdyenUIHost` (Demo app) and `AdyenSwiftUIHost` and appliy formatting to the whole project. --- .swiftformat | 1 + .swiftlint.yml | 1 + Adyen.xcodeproj/project.pbxproj | 202 ++---------------- .../AnalyticsProvider/AnalyticsFlavor.swift | 2 +- .../AnalyticsProvider/AnalyticsProvider.swift | 2 +- Adyen/Analytics/Models/AdyenAnalytics.swift | 2 +- Adyen/Analytics/Models/AnalyticsData.swift | 2 +- .../Models/AnalyticsEventDataSource.swift | 4 +- .../Models/AnalyticsEventError.swift | 2 +- .../Analytics/Models/AnalyticsEventInfo.swift | 2 +- .../Analytics/Models/AnalyticsEventLog.swift | 2 +- .../ThreadSafeAnalyticsEventDataSource.swift | 2 +- .../Analytics/Requests/AnalyticsRequest.swift | 2 +- .../Requests/InitialAnalyticsRequest.swift | 2 +- Adyen/Assets/Generated/LocalizationKey.swift | 3 +- Adyen/Core/APIClient/APIContext.swift | 2 +- Adyen/Core/APIClient/Environment.swift | 2 +- .../Core/APIClient/Requests/APIRequest.swift | 2 +- .../Requests/AppleWalletPassRequest.swift | 2 +- .../APIClient/Requests/ClientKeyRequest.swift | 2 +- .../Requests/OrderStatusRequest.swift | 2 +- .../Requests/PaymentStatusRequest.swift | 2 +- .../Responses/AppleWalletPassResponse.swift | 2 +- .../Responses/ClientKeyResponse.swift | 2 +- .../Responses/OrderStatusResponse.swift | 2 +- .../Responses/PaymentStatusResponse.swift | 2 +- Adyen/Core/AdyenContext/AdyenContext.swift | 4 +- ...sonalInformationComponent+Extensions.swift | 2 +- .../EmailFormItemInjector.swift | 2 +- .../FormItemInjector.swift | 2 +- .../NameFormItemInjector.swift | 2 +- .../PhoneFormItemInjector.swift | 2 +- .../AlreadyPaidPaymentComponent.swift | 2 +- .../AnyCashAppPayConfiguration.swift | 2 +- .../Components/Base/ActionComponentData.swift | 2 +- .../Base/BasicComponentConfiguration.swift | 2 +- .../Components/Base/PartialPaymentError.swift | 2 +- .../Base/PresentableComponentWrapper.swift | 2 +- .../Installment/InstallmentOptions.swift | 2 +- .../Components/InstantPaymentComponent.swift | 2 +- .../StoredPaymentMethodComponent.swift | 2 +- .../Core/Core Protocols/ActionComponent.swift | 2 +- .../Core Protocols/AdyenSessionAware.swift | 2 +- .../Core Protocols/AnyDropInComponent.swift | 2 +- Adyen/Core/Core Protocols/Component.swift | 2 +- Adyen/Core/Core Protocols/Details.swift | 2 +- .../Core/Core Protocols/DeviceDependent.swift | 2 +- .../DropInComponentDelegate.swift | 2 +- .../Core Protocols/LoadingComponent.swift | 2 +- .../PartialPaymentComponent.swift | 2 +- .../PartialPaymentDelegate.swift | 2 +- .../PaymentAwareComponent.swift | 2 +- .../Core Protocols/PaymentComponent.swift | 2 +- .../PaymentComponentBuilder.swift | 2 +- Adyen/Core/Core Protocols/PaymentMethod.swift | 2 +- .../Core Protocols/PresentableComponent.swift | 2 +- .../Core Protocols/PresentationDelegate.swift | 2 +- ...eadyToSubmitPaymentComponentDelegate.swift | 2 +- .../ViewControllerPresenter.swift | 2 +- Adyen/Core/Errors/APIError.swift | 2 +- Adyen/Core/Errors/AppleWalletError.swift | 2 +- Adyen/Core/Errors/ComponentError.swift | 2 +- Adyen/Core/Errors/UnknownError.swift | 2 +- Adyen/Core/Models/CardType.swift | 2 +- Adyen/Core/Models/DisplayInformation.swift | 2 +- Adyen/Core/Models/ShopperInteraction.swift | 2 +- .../ACHDirectDebitPaymentMethod.swift | 2 +- .../Abstract/AnyCardPaymentMethod.swift | 2 +- .../Abstract/AnyPaymentMethod.swift | 2 +- .../Abstract/AnyPaymentMethodDecoder.swift | 2 +- .../Abstract/PaymentMethodType.swift | 2 +- .../Abstract/PaymentMethods.swift | 2 +- .../Payment Methods/AffirmPaymentMethod.swift | 2 +- .../ApplePayPaymentMethod.swift | 2 +- .../Payment Methods/AtomePaymentMethod.swift | 2 +- .../BACSDirectDebitPaymentMethod.swift | 2 +- .../Payment Methods/BCMCPaymentMethod.swift | 2 +- .../Payment Methods/BLIKPaymentMethod.swift | 2 +- .../Payment Methods/BoletoPaymentMethod.swift | 2 +- .../Payment Methods/CardPaymentMethod.swift | 2 +- .../CashAppPaymentMethod.swift | 2 +- .../Payment Methods/DokuPaymentMethod.swift | 2 +- .../EContextPaymentMethod.swift | 2 +- .../GiftCardPaymentMethod.swift | 2 +- .../InstantPaymentMethod.swift | 2 +- .../IssuerListPaymentMethod.swift | 2 +- .../Payment Methods/MBWayPaymentMethod.swift | 2 +- .../MealVoucherPaymentMethod.swift | 2 +- .../OnlineBankingPaymentMethod.swift | 2 +- .../QiwiWalletPaymentMethod.swift | 2 +- .../SEPADirectDebitPaymentMethod.swift | 2 +- .../StoredBCMCPaymentMethod.swift | 2 +- .../StoredBLIKPaymentMethod.swift | 2 +- .../StoredCashAppPayPaymentMethod.swift | 2 +- .../StoredInstantPaymentMethod.swift | 2 +- .../StoredPayPalPaymentMethod.swift | 2 +- .../Payment Methods/UPIPaymentMethod.swift | 2 +- .../WeChatPayPaymentMethod.swift | 2 +- Adyen/Core/ToolBar/CancellableToolBar.swift | 2 +- Adyen/Core/ToolBar/ModalToolbar.swift | 2 +- Adyen/Formatters/AmountFormatter.swift | 2 +- .../BrazilSocialSecurityNumberFormatter.swift | 2 +- Adyen/Formatters/Formatter.swift | 2 +- Adyen/Formatters/IBANFormatter.swift | 2 +- Adyen/Formatters/NumericFormatter.swift | 2 +- Adyen/Helpers/AdyenDependencies.swift | 2 +- Adyen/Helpers/AdyenScope.swift | 2 +- Adyen/Helpers/AdyenSdkVersion.swift | 2 +- Adyen/Helpers/ArrayHelpers.swift | 2 +- Adyen/Helpers/BundleHelpers.swift | 2 +- .../KeyedDecodingContainerHelpers.swift | 2 +- Adyen/Helpers/NSConstraintHelper.swift | 2 +- Adyen/Helpers/NSTextAlignmentHelpers.swift | 2 +- Adyen/Helpers/ResultHelpers.swift | 2 +- Adyen/Helpers/StringHelpers.swift | 2 +- Adyen/Helpers/TimeIntervalHelpers.swift | 2 +- Adyen/Helpers/UIApplicationHelpers.swift | 2 +- Adyen/Helpers/UIButtonHelpers.swift | 2 +- Adyen/Helpers/UIColorHelpers.swift | 2 +- Adyen/Helpers/UIFontHelpers.swift | 2 +- Adyen/Helpers/UIImageViewHelpers.swift | 2 +- Adyen/Helpers/UILabelHelpers.swift | 2 +- Adyen/Helpers/UIProgressViewHelpers.swift | 2 +- Adyen/Helpers/UIViewAnimation.swift | 2 +- Adyen/Helpers/UIViewConstraintsHelper.swift | 2 +- Adyen/Helpers/UIViewControllerHelpers.swift | 2 +- Adyen/Helpers/UIViewHelpers.swift | 2 +- Adyen/Helpers/UIViewRoundingHelpers.swift | 2 +- Adyen/Helpers/URLHelpers.swift | 2 +- Adyen/Model/Amount.swift | 2 +- Adyen/Model/AnyEncodable.swift | 2 +- Adyen/Model/Balance.swift | 2 +- Adyen/Model/BrowserInfo.swift | 2 +- Adyen/Model/DelegatedAuthenticationData.swift | 2 +- Adyen/Model/Installments.swift | 2 +- Adyen/Model/PartialPaymentOrder.swift | 2 +- Adyen/Model/Payment.swift | 2 +- Adyen/Model/PaymentComponentData.swift | 2 +- Adyen/Model/PostalAddress.swift | 2 +- Adyen/Model/PrefilledShopperInformation.swift | 2 +- Adyen/Model/ShopperInformation.swift | 2 +- .../Model/StorePaymentMethodFieldAware.swift | 2 +- Adyen/UI/Dimensions.swift | 2 +- Adyen/UI/Form/FormItemViewBuilder.swift | 2 +- Adyen/UI/Form/FormView.swift | 2 +- .../FormViewController+ViewProtocol.swift | 2 +- Adyen/UI/Form/FormViewController.swift | 2 +- Adyen/UI/Form/FormViewItemManager.swift | 2 +- .../Form/Items/Address/AddressViewModel.swift | 2 +- .../DefaultAddressViewModelBuilder.swift | 2 +- .../FormAddressItem+Configuration.swift | 2 +- .../Form/Items/Address/FormAddressItem.swift | 2 +- .../Items/Address/FormPostalCodeItem.swift | 2 +- .../Items/Address/FormRegionPickerItem.swift | 2 +- .../Picker/FormAddressPickerItem.swift | 4 + .../Picker/FormAddressPickerItemView.swift | 2 +- .../Basic Items/FormAttributedLabelItem.swift | 2 +- .../Items/Basic Items/FormContainerItem.swift | 2 +- .../Items/Basic Items/FormLabelItem.swift | 2 +- .../FormVerticalStackItemView.swift | 2 +- .../UI/Form/Items/Button/FormButtonItem.swift | 2 +- .../Items/Button/FormButtonItemStyle.swift | 2 +- .../Items/Button/FormButtonItemView.swift | 2 +- .../SearchButton/FormSearchButtonItem.swift | 2 +- .../FormSearchButtonItemView.swift | 2 +- Adyen/UI/Form/Items/Error/FormErrorItem.swift | 2 +- .../Form/Items/Error/FormErrorItemStyle.swift | 2 +- .../Form/Items/Error/FormErrorItemView.swift | 2 +- .../Items/FormImageItem/FormImageItem.swift | 2 +- Adyen/UI/Form/Items/FormItem.swift | 2 +- Adyen/UI/Form/Items/FormItemView.swift | 2 +- .../Phone Number/FormPhoneNumberItem.swift | 2 +- .../FormPhoneNumberItemView.swift | 2 +- .../FormSegmentedControlItem.swift | 2 +- .../Items/Separator/FormSeparatorItem.swift | 2 +- .../Separator/FormSeparatorItemView.swift | 2 +- .../UI/Form/Items/Spacer/FormSpacerItem.swift | 2 +- .../Items/Spacer/FormSpacerItemView.swift | 2 +- Adyen/UI/Form/Items/Split/FormSplitItem.swift | 2 +- .../Form/Items/Split/FormSplitItemView.swift | 2 +- .../Form/Items/Text/FormTextInputItem.swift | 2 +- .../Items/Text/FormTextInputItemView.swift | 2 +- Adyen/UI/Form/Items/Text/FormTextItem.swift | 2 +- .../Form/Items/Text/FormTextItemStyle.swift | 2 +- .../UI/Form/Items/Text/FormTextItemView.swift | 2 +- Adyen/UI/Form/Items/Text/TextField.swift | 2 +- .../UI/Form/Items/Toggle/FormToggleItem.swift | 2 +- .../Items/Toggle/FormToggleItemStyle.swift | 2 +- .../Items/Toggle/FormToggleItemView.swift | 2 +- .../Abstract/BaseFormPickerItem.swift | 2 +- .../Abstract/BaseFormPickerItemView.swift | 2 +- .../Abstract/BasePickerInputControl.swift | 2 +- .../FormIssuerPickerItem.swift | 2 +- .../FormIssuersPickerItemView.swift | 2 +- .../FormPhoneExtensionPickerItem.swift | 2 +- .../FormPhoneExtensionPickerItemView.swift | 2 +- .../PhoneExtensionInputControl.swift | 2 +- Adyen/UI/Form/Items/Value/FormValueItem.swift | 2 +- .../Form/Items/Value/FormValueItemView.swift | 2 +- .../Items/Value/Picker/FormPickerItem.swift | 2 +- .../Value/Picker/FormPickerItemView.swift | 2 +- ...SearchViewController+EmptyView+Style.swift | 2 +- ...PickerSearchViewController+EmptyView.swift | 2 +- ...FormPickerSearchViewController+Style.swift | 2 +- .../FormPickerSearchViewController.swift | 2 +- .../Selectable/FormSelectableValueItem.swift | 2 +- .../FormSelectableValueItemView.swift | 2 +- .../FormValidatableValueItem.swift | 2 +- .../FormValidatableValueItemView.swift | 2 +- Adyen/UI/List/CoreListDataSource.swift | 2 +- Adyen/UI/List/DiffableListDataSource.swift | 2 +- Adyen/UI/List/ListCell.swift | 2 +- Adyen/UI/List/ListFooterView.swift | 2 +- Adyen/UI/List/ListHeaderView.swift | 2 +- Adyen/UI/List/ListItem+Icon.swift | 2 +- Adyen/UI/List/ListItem.swift | 2 +- Adyen/UI/List/ListItemStyle.swift | 2 +- Adyen/UI/List/ListItemView.swift | 2 +- Adyen/UI/List/ListSection.swift | 2 +- Adyen/UI/List/ListSectionFooterStyle.swift | 2 +- Adyen/UI/List/ListSectionHeaderStyle.swift | 2 +- Adyen/UI/List/ListViewController.swift | 2 +- Adyen/UI/Styles/ApplePayStyle.swift | 2 +- Adyen/UI/Styles/ButtonStyle.swift | 2 +- Adyen/UI/Styles/CoreColors.swift | 2 +- Adyen/UI/Styles/CoreFonts.swift | 2 +- Adyen/UI/Styles/CornerRadiusStyle.swift | 2 +- Adyen/UI/Styles/ImageStyle.swift | 2 +- Adyen/UI/Styles/ListComponentStyle.swift | 2 +- Adyen/UI/Styles/NavigationStyle.swift | 2 +- Adyen/UI/Styles/ProgressViewStyle.swift | 2 +- Adyen/UI/Styles/SegmentedControlStyle.swift | 2 +- Adyen/UI/Styles/TextStyle.swift | 2 +- Adyen/UI/Styles/ViewStyle.swift | 2 +- .../View Controllers/ADYViewController.swift | 2 +- .../AddressLookup/AddressLookupProvider.swift | 2 +- ...ddressLookupViewController+ViewModel.swift | 2 +- .../AddressLookupViewController.swift | 2 +- ...essInputFormViewController+ViewModel.swift | 2 +- .../Form/AddressInputFormViewController.swift | 2 +- ...LookupSearchViewController+EmptyView.swift | 2 +- ...LookupSearchViewController+ViewModel.swift | 2 +- .../AddressLookupSearchViewController.swift | 2 +- .../SearchViewController+InterfaceState.swift | 2 +- .../SearchViewController+ViewModel.swift | 2 +- .../SecuredViewController.swift | 2 +- .../ViewControllerDelegate.swift | 2 +- Adyen/UI/Views/ContainerView.swift | 2 +- Adyen/UI/Views/CopyLabelView.swift | 2 +- Adyen/UI/Views/EmptyStateView.swift | 2 +- Adyen/UI/Views/LinkTextView.swift | 2 +- Adyen/UI/Views/LoadingView.swift | 2 +- Adyen/UI/Views/NetworkImageView.swift | 2 +- Adyen/UI/Views/SubmitButton.swift | 2 +- Adyen/UI/Views/UISearchBar+Prominent.swift | 2 +- Adyen/UI/Views/UIView+Accessibility.swift | 2 +- Adyen/Utilities/AdyenCoder.swift | 2 +- Adyen/Utilities/Analytics.swift | 2 +- Adyen/Utilities/AppLauncher.swift | 2 +- Adyen/Utilities/BundleSPMExtension.swift | 2 +- Adyen/Utilities/Completion.swift | 2 +- Adyen/Utilities/Debugging/Assertion.swift | 2 +- Adyen/Utilities/Debugging/Logger.swift | 2 +- .../AllCountriesPhoneExtensions.swift | 2 +- Adyen/Utilities/External/AllRegions.swift | 2 +- .../LocalizableRegionRepository.swift | 2 +- .../Utilities/External/LogoURLProvider.swift | 2 +- .../External/PhoneExtensionsRepository.swift | 2 +- Adyen/Utilities/IBANSpecification.swift | 2 +- Adyen/Utilities/KeyboardObserver.swift | 2 +- Adyen/Utilities/LazyOptional.swift | 2 +- Adyen/Utilities/Localization.swift | 2 +- Adyen/Utilities/LocalizationParameters.swift | 2 +- .../CoreBundleExtension.swift | 2 +- .../Observable/AdyenObservable.swift | 2 +- .../Utilities/Observable/AdyenObserver.swift | 2 +- .../Utilities/Observable/EventPublisher.swift | 2 +- Adyen/Utilities/Observable/Observation.swift | 2 +- .../Observable/ObservationManager.swift | 2 +- .../PublicKeyProvider/PublicKeyConsumer.swift | 2 +- .../PublicKeyProvider/PublicKeyProvider.swift | 2 +- Adyen/Utilities/SizeUtilities.swift | 2 +- Adyen/Utilities/Throttler.swift | 2 +- Adyen/Utilities/ViewIdentifierBuilder.swift | 2 +- Adyen/Validators/BalanceChecker.swift | 2 +- Adyen/Validators/ClientKeyValidator.swift | 2 +- Adyen/Validators/CountryCodeValidator.swift | 2 +- Adyen/Validators/CurrencyCodeValidator.swift | 2 +- Adyen/Validators/DateValidator.swift | 2 +- Adyen/Validators/EmailValidator.swift | 2 +- Adyen/Validators/IBANValidator.swift | 2 +- Adyen/Validators/LengthValidator.swift | 2 +- Adyen/Validators/NumericStringValidator.swift | 2 +- Adyen/Validators/PhoneNumberValidator.swift | 2 +- .../RegularExpressionValidator.swift | 2 +- Adyen/Validators/Validator.swift | 2 +- AdyenActions/Actions/Action.swift | 2 +- AdyenActions/Actions/AnyVoucherAction.swift | 2 +- AdyenActions/Actions/AwaitAction.swift | 2 +- .../Actions/BoletoVoucherAction.swift | 2 +- AdyenActions/Actions/DocumentAction.swift | 2 +- AdyenActions/Actions/DokuVoucherAction.swift | 2 +- .../Actions/EContextATMVoucherAction.swift | 2 +- .../Actions/EContextStoresVoucherAction.swift | 2 +- .../Actions/MultibancoVoucherAction.swift | 2 +- AdyenActions/Actions/OXXOVoucherAction.swift | 2 +- AdyenActions/Actions/QRCodeAction.swift | 2 +- AdyenActions/Actions/RedirectAction.swift | 2 +- AdyenActions/Actions/SDKAction.swift | 2 +- AdyenActions/Actions/ThreeDS2Action.swift | 2 +- .../Actions/ThreeDS2ChallengeAction.swift | 2 +- .../Actions/ThreeDS2FingerprintAction.swift | 2 +- AdyenActions/Actions/VoucherAction.swift | 2 +- AdyenActions/Actions/WeChatPaySDKAction.swift | 2 +- AdyenActions/Actions/WeChatPaySDKData.swift | 2 +- AdyenActions/AdyenActionComponent.swift | 2 +- .../3DS2 SDK Adapters/ADYServiceAdapter.swift | 2 +- .../3DS2 SDK Adapters/AnyADYTransaction.swift | 2 +- .../AnyAuthenticationRequestParameters.swift | 2 +- .../AnyChallengeResult.swift | 2 +- .../API/Submit3DS2FingerprintRequest.swift | 2 +- .../API/Submit3DS2FingerprintResponse.swift | 2 +- .../ThreeDS2CoreActionHandler.swift | 2 +- .../ThreeDS2PlusDACoreActionHandler.swift | 2 +- .../AnyThreeDS2ActionHandler.swift | 2 +- ...DS2ClassicActionHandler+Initializers.swift | 2 +- .../ThreeDS2ClassicActionHandler.swift | 2 +- ...DS2CompactActionHandler+Initializers.swift | 2 +- .../ThreeDS2CompactActionHandler.swift | 2 +- .../ThreeDSActionHandlerResult.swift | 2 +- .../ThreeDS2FingerprintSubmitter.swift | 2 +- .../Components/3DS2/ThreeDS2Component.swift | 2 +- .../ThreeDS2ComponentChallengeToken.swift | 2 +- .../3DS2/ThreeDS2ComponentFingerprint.swift | 2 +- .../ThreeDS2ComponentFingerprintToken.swift | 2 +- .../Components/3DS2/ThreeDS2Details.swift | 2 +- .../Components/3DS2/ThreeDSResult.swift | 2 +- .../Components/Await/AwaitActionDetails.swift | 2 +- .../Components/Await/AwaitComponent.swift | 2 +- .../Components/Await/PollingComponent.swift | 2 +- .../Await/PollingHandlerProvider.swift | 2 +- .../Components/Base/ActionNavigationBar.swift | 2 +- .../Base/AnyWeChatPaySDKActionComponent.swift | 2 +- .../Document/DocumentComponent.swift | 2 +- .../Document/ShareableComponent.swift | 2 +- .../Components/QRCode/ExpirationTimer.swift | 2 +- .../QRCode/QRCodeActionComponent.swift | 2 +- .../Redirect/BrowserComponent.swift | 2 +- .../NativeRedirectResultRequest.swift | 2 +- ...penExternalAppDetector+DependencyKey.swift | 2 +- .../Redirect/OpenExternalAppDetector.swift | 2 +- .../Redirect/RedirectComponent.swift | 2 +- .../Components/Redirect/RedirectDetails.swift | 2 +- .../Redirect/RedirectListener.swift | 2 +- .../Voucher/AppleWalletPassProvider.swift | 2 +- .../Components/Voucher/VoucherComponent.swift | 2 +- .../Voucher/VoucherComponentExtensions.swift | 2 +- .../VoucherShareableViewProvider.swift | 2 +- .../Protocols/ActionHandlingComponent.swift | 2 +- .../UI/UI Style/ActionComponentStyle.swift | 2 +- .../UI/UI Style/AwaitComponentStyle.swift | 2 +- .../UI/UI Style/DocumentComponentStyle.swift | 2 +- .../UI/UI Style/QRCodeComponentStyle.swift | 2 +- .../UI/UI Style/RedirectComponentStyle.swift | 2 +- .../UI/UI Style/VoucherComponentStyle.swift | 2 +- .../Await/AwaitComponentViewModel.swift | 2 +- .../UI/View Controllers/Await/AwaitView.swift | 2 +- .../Await/AwaitViewController.swift | 2 +- .../Document/DocumentActionView.swift | 2 +- .../Document/DocumentActionViewModel.swift | 2 +- .../View Controllers/QR Code/QRCodeView.swift | 2 +- .../QR Code/QRCodeViewController.swift | 2 +- .../QR Code/QRCodeViewModel.swift | 2 +- .../Voucher/ShareableVoucherView.swift | 2 +- .../Voucher/VoucherCardLayer.swift | 2 +- .../Voucher/VoucherCardView.swift | 2 +- .../Voucher/VoucherSeparatorView.swift | 2 +- .../Voucher/VoucherView.swift | 2 +- .../Voucher/VoucherViewController.swift | 2 +- .../Voucher/VoucherViewModel.swift | 2 +- .../Utilities/BundleSPMExtension.swift | 2 +- .../ActionsBundleExtension.swift | 2 +- AdyenCard/Components/BCMC/BCMCComponent.swift | 2 +- AdyenCard/Components/Card/CardComponent.swift | 2 +- .../Card/CardComponentConfiguration.swift | 2 +- .../Card/CardComponentDelegate.swift | 2 +- .../Card/CardComponentExtensions.swift | 2 +- AdyenCard/Components/Card/CardDetails.swift | 2 +- .../Components/Card/ThreeDS2SdkVersion.swift | 2 +- .../GiftCardComponent+Extensions.swift | 2 +- .../GiftCardComponent/GiftCardComponent.swift | 2 +- .../GiftCardConfirmationPaymentMethod.swift | 2 +- .../GiftCardComponent/GiftCardDetails.swift | 2 +- .../MealVoucherDetails.swift | 2 +- .../PartialPaymentMethodDetails.swift | 2 +- AdyenCard/Components/KCP/KCPDetails.swift | 2 +- .../Stored Card/StoredCardAlertManager.swift | 2 +- .../Stored Card/StoredCardComponent.swift | 2 +- .../Stored Card/StoredCardConfiguration.swift | 2 +- AdyenCard/Form/FormCardExpiryDateItem.swift | 2 +- AdyenCard/Form/FormCardLogosItemView.swift | 2 +- .../Form/FormCardNumberContainerItem.swift | 2 +- .../FormCardNumberContainerItemView.swift | 2 +- AdyenCard/Form/FormCardNumberItem.swift | 2 +- AdyenCard/Form/FormCardNumberItemView.swift | 2 +- AdyenCard/Form/FormCardSecurityCodeItem.swift | 2 +- .../Form/FormCardSecurityCodeItemView.swift | 2 +- .../FormCardInstallmentsItem.swift | 2 +- .../FormCardInstallmentsItemView.swift | 2 +- .../InstallmentPickerElement.swift | 2 +- .../Formatters/CardExpiryDateFormatter.swift | 2 +- .../Formatters/CardNumberFormatter.swift | 2 +- .../CardSecurityCodeFormatter.swift | 2 +- .../BinLookup/BinLookupRequest.swift | 2 +- .../BinLookup/BinLookupResponse.swift | 2 +- .../BinLookup/BinLookupService.swift | 2 +- AdyenCard/Utilities/BundleSPMExtension.swift | 2 +- .../Utilities/CardType/BinInfoProvider.swift | 2 +- AdyenCard/Utilities/CardType/CardBrand.swift | 2 +- .../Utilities/CardType/CardTypeDetector.swift | 2 +- .../CardType/FallbackCardBrandProvider.swift | 2 +- .../CardBundleExtension.swift | 2 +- .../Validators/CardExpiryDateValidator.swift | 2 +- .../Validators/CardNumberValidator.swift | 2 +- .../Validators/CardPublicKeyValidator.swift | 2 +- .../CardSecurityCodeValidator.swift | 2 +- .../CashAppPayButtonItem.swift | 2 +- .../CashAppPayButtonItemView.swift | 2 +- AdyenCashAppPay/CashAppPayComponent.swift | 2 +- AdyenCashAppPay/CashAppPayConfiguration.swift | 2 +- AdyenCashAppPay/CashAppPayDetails.swift | 2 +- .../ACHDirectDebitDetails.swift | 2 +- AdyenComponents/Affirm/AffirmDetails.swift | 2 +- .../Apple Pay/ApplePayComponentDelegate.swift | 2 +- .../Apple Pay/ApplePayComponentError.swift | 2 +- .../Apple Pay/ApplePayConfiguration.swift | 2 +- .../Apple Pay/ApplePayDetails.swift | 2 +- .../Apple Pay/ApplePayPayment.swift | 2 +- .../Atome/AtomeAddressViewModelBuilder.swift | 2 +- AdyenComponents/Atome/AtomeDetails.swift | 2 +- .../BACSDirectDebitComponent.swift | 2 +- .../BACSDirectDebitDetails.swift | 2 +- .../Factories/BACSItemsFactory.swift | 2 +- .../Models/BACSDirectDebitData.swift | 2 +- .../BACSConfirmationPresenter.swift | 2 +- .../BACSConfirmationViewController.swift | 2 +- .../Input/BACSInputFormViewController.swift | 2 +- .../Scenes/Input/BACSInputPresenter.swift | 2 +- .../BACSDirectDebitComponentTracker.swift | 2 +- AdyenComponents/BLIK/BLIKComponent.swift | 2 +- AdyenComponents/BLIK/BLIKDetails.swift | 2 +- .../BasicPersonalInfoFormComponent.swift | 2 +- .../BasicPersonalInfoFormDetails.swift | 2 +- .../Boleto/BoletoComponentExtensions.swift | 2 +- AdyenComponents/Boleto/BoletoDetails.swift | 2 +- AdyenComponents/Doku/DokuComponent.swift | 2 +- AdyenComponents/Doku/DokuDetails.swift | 2 +- .../Instant/InstantComponents.swift | 2 +- .../Issuer List/IssuerListComponent.swift | 2 +- .../Issuer List/IssuerListDetails.swift | 2 +- .../Issuer List/IssuerListEmptyView.swift | 2 +- AdyenComponents/MB Way/MBWayComponent.swift | 2 +- AdyenComponents/MB Way/MBWayDetails.swift | 2 +- .../OnlineBankingComponent.swift | 2 +- .../OnlineBanking/OnlineBankingDetails.swift | 2 +- .../Qiwi Wallet/QiwiWalletComponent.swift | 2 +- .../Qiwi Wallet/QiwiWalletDetails.swift | 2 +- .../SEPADirectDebitComponent.swift | 2 +- .../SEPADirectDebitDetails.swift | 2 +- AdyenComponents/UPI/UPIComponent.swift | 2 +- AdyenComponents/UPI/UPIComponentDetails.swift | 2 +- .../AdyenDelegatedAuthentication.swift | 5 +- .../PaymentMethodListComponent.swift | 2 +- .../Components/PreApplePayComponent.swift | 2 +- .../PreselectedPaymentMethodComponent.swift | 2 +- AdyenDropIn/DropInComponent.swift | 2 +- AdyenDropIn/DropInComponentExtensions.swift | 2 +- AdyenDropIn/Models/DropInComponentStyle.swift | 2 +- AdyenDropIn/Models/DropInConfiguration.swift | 2 +- .../DimmingPresentationController.swift | 2 +- .../DropInNavigationController.swift | 2 +- .../Presentation/ModalViewController.swift | 2 +- .../Presentation/NavigationDelegate.swift | 2 +- .../SlideInPresentationAnimator.swift | 2 +- .../Presentation/WrapperViewController.swift | 2 +- ...onentManager+PaymentComponentBuilder.swift | 2 +- AdyenDropIn/Utilities/ComponentManager.swift | 2 +- AdyenDropIn/Utilities/ComponentSections.swift | 2 +- AdyenDropIn/Views/PreApplePayView.swift | 2 +- AdyenEncryption/AnyEncryptor.swift | 2 +- AdyenEncryption/BankDetailsEncryptor.swift | 2 +- AdyenEncryption/CardEncryptor.swift | 2 +- .../Extensions/DataExtension.swift | 2 +- .../Extensions/IntegerExtension.swift | 2 +- .../Extensions/StringExtension.swift | 2 +- .../CommonCryptoHelpers.swift | 2 +- .../JWAA256CBCHS512Algorithm.swift | 2 +- .../JWAEncryptionAlgorithm.swift | 2 +- .../JSONWebEncryption.swift | 2 +- .../JSONWebEncryptionGenerator.swift | 2 +- .../RSAOAEP256Algorithm.swift | 2 +- AdyenEncryption/Model/Card.swift | 2 +- AdyenEncryption/Model/EncryptedCard.swift | 2 +- AdyenEncryption/Payload/BankPayload.swift | 2 +- AdyenEncryption/Payload/BinPayload.swift | 2 +- AdyenEncryption/Payload/CardPayload.swift | 2 +- AdyenEncryption/Payload/Payload.swift | 2 +- .../Balance check/BalanceCheckRequest.swift | 2 +- .../Cancel Order/CancelOrderRequest.swift | 2 +- .../Create Order/CreateOrderRequest.swift | 2 +- .../PaymentDetailsRequest.swift | 2 +- .../API/Payments/PaymentsRequest.swift | 2 +- AdyenSession/API/SelfRetainingAPIClient.swift | 2 +- .../Session Setup/SessionSetupRequest.swift | 2 +- AdyenSession/API/SessionAPIClient.swift | 2 +- ...AdyenSession+ActionComponentDelegate.swift | 2 +- ...AdyenSession+DropInComponentDelegate.swift | 2 +- .../AdyenSession+PartialPaymentDelegate.swift | 2 +- ...dyenSession+PaymentComponentDelegate.swift | 2 +- AdyenSession/AdyenSession.swift | 2 +- AdyenSession/AdyenSessionDelegate.swift | 2 +- AdyenSession/AdyenSessionResult.swift | 2 +- .../FullScreenViewControllerPresenter.swift | 2 +- .../WeChatPayActionComponent.swift | 2 +- .../WeChatPayAdditionalDetails.swift | 2 +- .../Configuration/AnalyticsSettingsView.swift | 2 +- .../Configuration/ApplePaySettingsView.swift | 2 +- .../Configuration/ConfigurationView.swift | 2 +- .../Configuration/DropInSettingsView.swift | 2 +- Demo/Common/Configuration/SearchBar.swift | 2 +- Demo/Common/Helpers/APIClientHelper.swift | 2 +- Demo/Common/Helpers/CodingHelpers.swift | 2 +- .../ComponentCreationError.swift | 2 +- ...ApplePayComponentAdvancedFlowExample.swift | 2 +- .../Components/ApplePayComponentExample.swift | 2 +- .../CardComponentAdvancedFlowExample.swift | 2 +- .../Components/CardComponentExample.swift | 2 +- ...tPaymentComponentAdvancedFlowExample.swift | 2 +- .../InstantPaymentComponentExample.swift | 2 +- ...suerListComponentAdvancedFlowExample.swift | 2 +- .../IssuerListComponentExample.swift | 2 +- .../DemoAddressLookupProvider.swift | 2 +- .../DropIn/DropInAdvancedFlowExample.swift | 2 +- .../DropIn/DropInExample.swift | 2 +- .../MapkitAddressLookupProvider.swift | 2 +- .../InitialDataAdvancedFlowProtocol.swift | 2 +- .../Protocols/InitialDataFlowProtocol.swift | 2 +- .../Protocols/PresenterExampleProtocol.swift | 2 +- Demo/Common/Models/ComponentsItem.swift | 2 +- Demo/Common/Networking/APIRequest.swift | 2 +- .../Networking/BalanceCheckRequest.swift | 2 +- .../Networking/CancelOrderRequest.swift | 2 +- .../Networking/CreateOrderRequest.swift | 2 +- Demo/Common/Networking/DefaultAPIClient.swift | 2 +- .../DisableStoredPaymentMethodRequest.swift | 2 +- Demo/Common/Networking/Environment.swift | 2 +- .../Networking/PaymentDetailsRequest.swift | 2 +- .../Networking/PaymentMethodsRequest.swift | 2 +- Demo/Common/Networking/PaymentsRequest.swift | 2 +- Demo/Common/Networking/SessionRequest.swift | 2 +- .../BACSDirectDebitPresentationDelegate.swift | 2 +- Demo/Common/Utils/APIClientMock.swift | 2 +- Demo/SwiftUI/AppDelegate.swift | 2 +- Demo/SwiftUI/ComponentsView.swift | 2 +- Demo/SwiftUI/ComponentsViewModel.swift | 2 +- Demo/SwiftUI/SceneDelegate.swift | 2 +- Demo/UIKit/AppDelegate.swift | 2 +- Demo/UIKit/ComponentsView.swift | 2 +- Demo/UIKit/ComponentsViewController.swift | 2 +- Demo/UIKit/UIView+Helpers.swift | 2 +- .../ActionComponentDelegateMock.swift | 2 +- .../AdyenActionComponentTests.swift | 2 +- .../Await/AwaitComponentTests.swift | 6 +- .../Await/PollingComponentTests.swift | 6 +- .../Redirect/RedirectComponentTests.swift | 2 +- .../Redirect/RedirectDetailsTests.swift | 2 +- .../Redirect/RedirectListnerTests.swift | 2 +- .../AppleWalletPassProviderTests.swift | 6 +- ...herShareableVoucherViewProviderTests.swift | 2 +- .../Voucher/DokuVoucherUITests.swift | 2 +- ...ATMShareableVoucherViewProviderTests.swift | 2 +- ...esVoucherViewControllerProviderTests.swift | 2 +- ...ncoShareableVoucherViewProviderTests.swift | 6 +- ...XXOShareableVoucherViewProviderTests.swift | 6 +- .../Voucher/VoucherComponentTests.swift | 2 +- .../VoucherShareableViewProviderMock.swift | 6 +- .../Voucher/VoucherViewDelegateMock.swift | 6 +- .../Voucher/VoucherViewTests.swift | 2 +- .../Analytics/AnalyticsEventTests.swift | 6 +- .../Analytics/AnalyticsFlavorTests.swift | 6 +- .../Analytics/AnalyticsProviderMock.swift | 6 +- .../Analytics/AnalyticsProviderTests.swift | 14 +- .../Assets/AssetsAccessTests.swift | 6 +- Tests/Adyen Tests/Core/APIContextTests.swift | 2 +- Tests/Adyen Tests/Core/ActionTests.swift | 2 +- .../Adyen Tests/Core/AdyenContextTests.swift | 2 +- .../Core/BackoffSchedulerTests.swift | 6 +- .../Core/BankDetailsEncryptorTests.swift | 6 +- Tests/Adyen Tests/Core/BrowserInfoTests.swift | 2 +- .../Adyen Tests/Core/PaymentMethodTests.swift | 2 +- .../Core/SimpleSchedulerTests.swift | 6 +- ...eyedDecodingContainerExtensionsTests.swift | 2 +- .../Extension/StringExtensionsTests.swift | 2 +- .../TimeIntervalExtensionsTests.swift | 2 +- .../Extension/UIButtonHelpersTests.swift | 2 +- .../Extension/UILabelHelpersTests.swift | 2 +- .../Extension/URLExtensionsTest.swift | 2 +- Tests/Adyen Tests/Mocks/APIClientMock.swift | 2 +- .../Mocks/ActionHandlingComponentMock.swift | 6 +- Tests/Adyen Tests/Mocks/AppLauncherMock.swift | 2 +- .../Mocks/CardPaymentMethodMock.swift | 2 +- Tests/Adyen Tests/Mocks/FormatterMock.swift | 2 +- .../Mocks/IntervalCalculatorMock.swift | 6 +- .../Mocks/MockAddressLookupProvider.swift | 2 +- .../Mocks/PaymentComponentDelegateMock.swift | 2 +- .../Mocks/PaymentComponentMock.swift | 2 +- .../Adyen Tests/Mocks/PaymentMethodMock.swift | 2 +- .../Mocks/PresentationDelegateMock.swift | 4 + .../Mocks/PresentingViewControllerMock.swift | 2 +- .../Mocks/StoredPaymentMethodMock.swift | 2 +- Tests/Adyen Tests/Mocks/ValidatorMock.swift | 2 +- .../Address/AddressViewModelTests.swift | 2 +- .../Address/FormAddressItemTests.swift | 2 +- .../Address/FormAddressPickerItemTests.swift | 2 +- .../Error Item/FormErrorItemTests.swift | 6 +- .../Picker/FormPickerItemTests.swift | 2 +- .../FormSelectableItemViewTests.swift | 2 +- .../Text/FormTextItemViewDelegateMock.swift | 2 +- .../Text/FormTextItemViewTests.swift | 2 +- .../FormValidatableItemViewTests.swift | 2 +- .../AddressInputFormViewControllerTests.swift | 2 +- .../AddressLookupViewControllerTests.swift | 2 +- .../FormPickerSearchViewControllerTests.swift | 2 +- .../SearchViewControllerTests.swift | 2 +- .../UI/Views/LinkTextViewTests.swift | 2 +- .../UI/Views/LoadingViewTests.swift | 6 +- .../Utilities/AdyenCoderTests.swift | 2 +- .../Utilities/AmountFormatterTests.swift | 2 +- .../Adyen Tests/Utilities/AssertsTests.swift | 2 +- .../Utilities/BalanceCheckerTests.swift | 6 +- .../Utilities/DateValidationTests.swift | 6 +- .../Utilities/KeyboardObserverTests.swift | 2 +- .../Utilities/LazyOptionalTests.swift | 2 +- .../Utilities/LengthValidatorTests.swift | 2 +- .../Utilities/LocalizationTests.swift | 2 +- .../Utilities/LogoGeneratorTests.swift | 6 +- .../Utilities/ObservableTests.swift | 2 +- .../PhoneExtensionsRepositoryTests.swift | 6 +- .../AdyenSwiftUITests.swift | 6 +- .../ThreeDS2FingerprintSubmitterTests.swift | 6 +- .../3DS2 Component/AnyADYServiceMock.swift | 6 +- .../AnyRedirectComponentMock.swift | 6 +- .../AnyThreeDS2ActionHandlerMock.swift | 6 +- .../AnyThreeDS2FingerprintSubmitterMock.swift | 6 +- .../AuthenticationServiceMock.swift | 2 +- .../ThreeDS2ClassicActionHandlerTests.swift | 6 +- .../ThreeDS2CompactActionHandlerTests.swift | 6 +- .../ThreeDS2ComponentTests.swift | 6 +- ...usDACoreActionHandlerTests+Constants.swift | 2 +- ...ThreeDS2PlusDACoreActionHandlerTests.swift | 6 +- .../ThreeDSResultExtension.swift | 6 +- Tests/Card Tests/BCMCComponentTests.swift | 2 +- Tests/Card Tests/CardComponentTests.swift | 2 +- Tests/Card Tests/CardDetailsTests.swift | 2 +- Tests/Card Tests/CardNumbers.swift | 2 +- .../CardPublicKeyProviderTests.swift | 6 +- ...ilSocialSecurityNumberFormatterTests.swift | 6 +- .../CardExpiryDateFormatterTests.swift | 2 +- .../Formatters/CardNumberFormatterTests.swift | 2 +- .../CardSecurityCodeFormatterTests.swift | 2 +- .../FormCardNumberItemTests.swift | 2 +- .../FormCardNumberItemViewTests.swift | 2 +- .../FormItemViewBuilderTests.swift | 2 +- .../FormCardSecurityCodeItemViewTests.swift | 2 +- .../Mocks/CardComponentDelegateMock.swift | 2 +- .../Mocks/CardTypeProviderMock.swift | 2 +- .../Mocks/OpenExternalAppDetector+Mock.swift | 2 +- .../Mocks/PublicKeyProviderMock.swift | 2 +- .../StoredCardAlertManagerTests.swift | 2 +- .../Card Tests/StoredCardComponentTests.swift | 6 +- .../StoredPaymentMethodComponentTests.swift | 2 +- .../Utilities/CardBrandProviderTests.swift | 2 +- .../Utilities/CardEncryptorCardTests.swift | 2 +- .../Utilities/CardTypeDetectorTests.swift | 2 +- .../Card Tests/Utilities/ThrottlerTests.swift | 2 +- .../CardExpiryDateValidatorTests.swift | 2 +- .../Validators/CardNumberValidatorTests.swift | 2 +- .../CardPublicKeyValidatorTests.swift | 2 +- .../CardSecurityCodeValidatorTests.swift | 2 +- .../Validators/EmailValidatorTests.swift | 6 +- .../NumericStringValidatorTests.swift | 2 +- .../PhoneNumberValidatorTests.swift | 6 +- .../Validators/RandomStringGenerator.swift | 2 +- .../ACHDirectDebitComponentTests.swift | 6 +- .../Affirm/AffirmComponentTests.swift | 2 +- .../Apple Pay/ApplePayComponentTests.swift | 2 +- .../Apple Pay/ApplePayDelegateMock.swift | 6 +- .../Apple Pay/ApplePayDetailsTest.swift | 2 +- .../Apple Pay/PreApplePayComponentTests.swift | 2 +- .../Atome/AtomeComponentTests.swift | 2 +- .../BACSDirectDebitComponentTests.swift | 4 + .../DocumentComponentTests.swift | 6 +- .../Factories/BACSItemsFactoryTests.swift | 4 + ...ACSConfirmationPresenterProtocolMock.swift | 4 + .../BACSConfirmationViewProtocolMock.swift | 4 + ...ectDebitComponentTrackerProtocolMock.swift | 6 +- .../Mocks/BACSInputFormViewProtocolMock.swift | 4 + .../BACSInputPresenterProtocolMock.swift | 4 + .../Mocks/BACSItemsFactoryProtocolMock.swift | 4 + .../Mocks/BACSRouterProtocolMock.swift | 6 +- .../DocumentActionViewDelegateMock.swift | 6 +- .../BACSConfirmationPresenterTests.swift | 4 + .../BACSConfirmationViewControllerTests.swift | 4 + .../BACSInputFormViewControllerTests.swift | 4 + .../Input/BACSInputPresenterTests.swift | 4 + ...BACSDirectDebitComponentTrackerTests.swift | 4 + .../BLIK Component/BLIKComponentTests.swift | 6 +- .../Boleto/BoletoComponentTests.swift | 2 +- .../CashAppPayComponentTests.swift | 2 +- .../Doku/DokuComponentTests.swift | 6 +- .../Gift Card/GiftCardComponentTests.swift | 6 +- .../PartialPaymentDelegateMock.swift | 6 +- ...ToSubmitPaymentComponentDelegateMock.swift | 6 +- .../InstantPaymentComponentTests.swift | 6 +- .../IssuerList/IssuerListComponentTests.swift | 2 +- .../MB Way/MBWayComponentTests.swift | 6 +- .../OnlineBankingComponentTests.swift | 2 +- .../PaymentComponentSubject.swift | 6 +- .../PaymentComponentSubjectTests.swift | 6 +- .../QRCode/QRCodeActionComponentTests.swift | 2 +- .../QRCode/QRCodeViewDelegateMock.swift | 2 +- .../QiwiWalletComponentTests.swift | 2 +- .../SEPA Tests/IBANFormatterTests.swift | 2 +- .../SEPA Tests/IBANValidatorTests.swift | 2 +- .../SEPADirectDebitComponentTests.swift | 2 +- .../BasicPersonalInfoFormComponentTests.swift | 6 +- .../UPIComponent/UPIComponentTests.swift | 2 +- .../DropIn Tests/ComponentManagerTests.swift | 2 +- Tests/DropIn Tests/DropInActionTests.swift | 2 +- Tests/DropIn Tests/DropInDelegateMock.swift | 6 +- Tests/DropIn Tests/DropInTestInternal.swift | 6 +- Tests/DropIn Tests/DropInTests.swift | 2 +- Tests/DropIn Tests/ModalToolbarTests.swift | 2 +- .../ModalViewControllerTests.swift | 2 +- ...ymentMethodListComponentDelegateMock.swift | 6 +- .../PaymentMethodListComponentTests.swift | 2 +- .../PreselectedPaymentComponentTests.swift | 2 +- Tests/DummyData/Dummy.swift | 2 +- Tests/DummyData/DummyHelper.swift | 2 +- Tests/DummyData/DummyPaymentMethods.swift | 2 +- Tests/DummyData/PostalAddressMocks.swift | 2 +- .../JWAA256CBCHS512AlgorithmTests.swift | 6 +- .../RSAOAEP256AlgorithmTests.swift | 6 +- Tests/Helpers/PaymentMethods+Equatable.swift | 2 +- Tests/Helpers/UIBarButtonItem+XCTest.swift | 2 +- Tests/Helpers/UIView+Search.swift | 2 +- Tests/Helpers/UIViewController+Search.swift | 2 +- Tests/Helpers/XCTestCase+Coder.swift | 2 +- Tests/Helpers/XCTestCase+FirstResponder.swift | 2 +- .../Helpers/XCTestCase+FormAddressItem.swift | 2 +- Tests/Helpers/XCTestCase+Result.swift | 6 +- .../XCTestCase+RootViewController.swift | 2 +- Tests/Helpers/XCTestCase+Style.swift | 2 +- Tests/Helpers/XCTestCase+Wait.swift | 6 +- Tests/Helpers/XCTestCaseExtension.swift | 6 +- .../SelfRetainingAPIClientTests.swift | 6 +- Tests/Session Tests/SessionDelegateMock.swift | 6 +- Tests/Session Tests/SessionTests.swift | 6 +- .../Affirm/AffirmComponentUITests.swift | 2 +- .../Atome/AtomeComponentUITests.swift | 2 +- .../BLIK/BLIKComponentUITests.swift | 2 +- .../Boleto/BoletoComponentUITests.swift | 2 +- .../Doku/DokuComponentUITests.swift | 6 +- .../IssuerListComponentUITests.swift | 6 +- .../MBWay/MBWayComponentUITests.swift | 2 +- .../OnlineBankingComponentUITests.swift | 2 +- .../QRCode/QRCodeActionComponentUITests.swift | 2 +- .../UPIComponent/UPIComponentUITests.swift | 2 +- .../Helpers/XCTestCase+SnapshotTesting.swift | 6 +- UITests/UI/ListViewControllerUITests.swift | 6 +- 780 files changed, 919 insertions(+), 1163 deletions(-) diff --git a/.swiftformat b/.swiftformat index 7a6a13f7ad..404d86fa32 100644 --- a/.swiftformat +++ b/.swiftformat @@ -4,3 +4,4 @@ --ranges nospace --trimwhitespace nonblank-lines --decimalgrouping none +--header "\nCopyright (c) {created.year} Adyen N.V.\n\nThis file is open source and available under the MIT license. See the LICENSE file for more info.\n" diff --git a/.swiftlint.yml b/.swiftlint.yml index 9948b268f2..9bb3a0e74d 100644 --- a/.swiftlint.yml +++ b/.swiftlint.yml @@ -8,6 +8,7 @@ opt_in_rules: excluded: - Tests + - UITests - Internal - Docs - Demo diff --git a/Adyen.xcodeproj/project.pbxproj b/Adyen.xcodeproj/project.pbxproj index f4bfdf0cca..776f9a6d8d 100644 --- a/Adyen.xcodeproj/project.pbxproj +++ b/Adyen.xcodeproj/project.pbxproj @@ -5441,7 +5441,6 @@ A04F8C1A29E5950100F3F62B /* Sources */, A04F8C1B29E5950100F3F62B /* Frameworks */, A04F8C1C29E5950100F3F62B /* Resources */, - A020EC5029E6F2C30050B2FE /* Format and lint */, ); buildRules = ( ); @@ -5465,7 +5464,6 @@ E2C0E02F22097917008616F6 /* Sources */, E2C0E03022097917008616F6 /* Frameworks */, E2C0E03122097917008616F6 /* Resources */, - F9A4A3012373235800D774E8 /* Format and lint */, ); buildRules = ( ); @@ -5508,7 +5506,6 @@ E2C0E05B220982AE008616F6 /* Sources */, E2C0E05C220982AE008616F6 /* Frameworks */, E2C0E05D220982AE008616F6 /* Resources */, - F9A4A302237323DE00D774E8 /* Format and lint */, ); buildRules = ( ); @@ -5530,7 +5527,8 @@ E2C0E07A220B0399008616F6 /* Frameworks */, E2C0E07B220B0399008616F6 /* Resources */, E2C0E0A8220B0827008616F6 /* Embed Frameworks */, - F9A4A304237323EE00D774E8 /* Format and lint */, + F9A4A304237323EE00D774E8 /* SwiftFormat */, + B64285622BB45D4A005C88C7 /* SwiftLint */, ); buildRules = ( ); @@ -5567,7 +5565,6 @@ E9B36CA72243B2FE00EAA368 /* Sources */, E9B36CA82243B2FE00EAA368 /* Frameworks */, E9B36CA92243B2FE00EAA368 /* Resources */, - F9A4A303237323E700D774E8 /* Format and lint */, ); buildRules = ( ); @@ -5586,7 +5583,6 @@ F9175E51259393E800D653BE /* Sources */, F9175E52259393E800D653BE /* Frameworks */, F9175E53259393E800D653BE /* Resources */, - F9175E662593942E00D653BE /* Format and lint */, ); buildRules = ( ); @@ -5609,7 +5605,6 @@ F9175F882594986900D653BE /* Sources */, F9175F892594986900D653BE /* Frameworks */, F9175F8A2594986900D653BE /* Resources */, - F9175F9F259498EA00D653BE /* Format and lint */, ); buildRules = ( ); @@ -5631,7 +5626,6 @@ F92326A825A3669E002C5BC4 /* Sources */, F92326A925A3669E002C5BC4 /* Frameworks */, F92326AA25A3669E002C5BC4 /* Resources */, - E7388FC1260B68C400291DE7 /* Format and lint */, ); buildRules = ( ); @@ -5651,7 +5645,6 @@ F92980A227CE2B33000CA5CA /* Sources */, F92980A327CE2B33000CA5CA /* Frameworks */, F92980A427CE2B33000CA5CA /* Resources */, - F92980C027CF5149000CA5CA /* Format and lint */, ); buildRules = ( ); @@ -5693,7 +5686,6 @@ F95899C225FA524100E4113F /* Sources */, F95899C325FA524100E4113F /* Frameworks */, F95899C425FA524100E4113F /* Resources */, - E7388FC2260B68DE00291DE7 /* Format and lint */, ); buildRules = ( ); @@ -5713,7 +5705,8 @@ F95B6D922527454E002C9062 /* Frameworks */, F95B6D932527454E002C9062 /* Resources */, F95B6DC52527565C002C9062 /* Embed Frameworks */, - F95B6DD2252B1F6A002C9062 /* Format and lint */, + F95B6DD2252B1F6A002C9062 /* SwiftFormat */, + B64285632BB4682A005C88C7 /* SwiftLint */, ); buildRules = ( ); @@ -5767,7 +5760,6 @@ F9620D7E23C73B0D005209FC /* Sources */, F9620D7F23C73B0D005209FC /* Frameworks */, F9620D8023C73B0D005209FC /* Resources */, - F9620DA223C747BD005209FC /* Format and lint */, ); buildRules = ( ); @@ -6084,7 +6076,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXShellScriptBuildPhase section */ - A020EC5029E6F2C30050B2FE /* Format and lint */ = { + B64285622BB45D4A005C88C7 /* SwiftLint */ = { isa = PBXShellScriptBuildPhase; alwaysOutOfDate = 1; buildActionMask = 2147483647; @@ -6094,16 +6086,16 @@ ); inputPaths = ( ); - name = "Format and lint"; + name = SwiftLint; outputFileListPaths = ( ); outputPaths = ( ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; - shellScript = "if [ -f $SRCROOT/Internal/format.sh ]; then\n $SRCROOT/Internal/format.sh \"$SRCROOT/$TARGETNAME\"\nfi\n\nif [ -f $SRCROOT/Internal/swiftlint ]; then\n cd \"$SRCROOT/$TARGETNAME\"\n $SRCROOT/Internal/swiftlint --config \"$SRCROOT/.swiftlint.yml\"\nfi\n"; + shellScript = "# Type a script or drag a script file from your workspace to insert its path.\n\nif [ -f $SRCROOT/Internal/swiftlint ]; then\n $SRCROOT/Internal/swiftlint --config \"$SRCROOT/.swiftlint.yml\"\nfi\n"; }; - C96A8E2C26CA801E000BB8C6 /* Update Localization strings files */ = { + B64285632BB4682A005C88C7 /* SwiftLint */ = { isa = PBXShellScriptBuildPhase; alwaysOutOfDate = 1; buildActionMask = 2147483647; @@ -6112,38 +6104,17 @@ inputFileListPaths = ( ); inputPaths = ( - "", ); - name = "Update Localization strings files"; + name = SwiftLint; outputFileListPaths = ( ); outputPaths = ( - "", ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; - shellScript = "#!/bin/bash\n\nif [ ! -f $SRCROOT/Internal/localization.sh ]; then\n exit 0\nfi\n\n$SRCROOT/Internal/localization.sh\n"; + shellScript = "if [ -f $SRCROOT/Internal/swiftlint ]; then\n $SRCROOT/Internal/swiftlint --config \"$SRCROOT/.swiftlint.yml\"\nfi\n"; }; - E7388FC1260B68C400291DE7 /* Format and lint */ = { - isa = PBXShellScriptBuildPhase; - alwaysOutOfDate = 1; - buildActionMask = 2147483647; - files = ( - ); - inputFileListPaths = ( - ); - inputPaths = ( - ); - name = "Format and lint"; - outputFileListPaths = ( - ); - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "if [ -f $SRCROOT/Internal/format.sh ]; then\n $SRCROOT/Internal/format.sh \"$SRCROOT/$TARGETNAME\"\nfi\n\nif [ -f $SRCROOT/Internal/swiftlint ]; then\n cd \"$SRCROOT/$TARGETNAME\"\n $SRCROOT/Internal/swiftlint --config \"$SRCROOT/.swiftlint.yml\"\nfi\n"; - }; - E7388FC2260B68DE00291DE7 /* Format and lint */ = { + C96A8E2C26CA801E000BB8C6 /* Update Localization strings files */ = { isa = PBXShellScriptBuildPhase; alwaysOutOfDate = 1; buildActionMask = 2147483647; @@ -6152,15 +6123,17 @@ inputFileListPaths = ( ); inputPaths = ( + "", ); - name = "Format and lint"; + name = "Update Localization strings files"; outputFileListPaths = ( ); outputPaths = ( + "", ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; - shellScript = "if [ -f $SRCROOT/Internal/format.sh ]; then\n $SRCROOT/Internal/format.sh \"$SRCROOT/$TARGETNAME\"\nfi\n\nif [ -f $SRCROOT/Internal/swiftlint ]; then\n cd \"$SRCROOT/$TARGETNAME\"\n $SRCROOT/Internal/swiftlint --config \"$SRCROOT/.swiftlint.yml\"\nfi\n"; + shellScript = "#!/bin/bash\n\nif [ ! -f $SRCROOT/Internal/localization.sh ]; then\n exit 0\nfi\n\n$SRCROOT/Internal/localization.sh\n"; }; F91664F123E42D2D00C10738 /* AdyenUIHost configuration */ = { isa = PBXShellScriptBuildPhase; @@ -6181,64 +6154,7 @@ shellPath = /bin/sh; shellScript = "if [ -f $SRCROOT/Internal/post-commit ]; then\n $SRCROOT/Internal/post-commit\nfi\n"; }; - F9175E662593942E00D653BE /* Format and lint */ = { - isa = PBXShellScriptBuildPhase; - alwaysOutOfDate = 1; - buildActionMask = 2147483647; - files = ( - ); - inputFileListPaths = ( - ); - inputPaths = ( - ); - name = "Format and lint"; - outputFileListPaths = ( - ); - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "if [ -f $SRCROOT/Internal/format.sh ]; then\n $SRCROOT/Internal/format.sh \"$SRCROOT/$TARGETNAME\"\nfi\n\nif [ -f $SRCROOT/Internal/swiftlint ]; then\n cd \"$SRCROOT/$TARGETNAME\"\n $SRCROOT/Internal/swiftlint --config \"$SRCROOT/.swiftlint.yml\"\nfi\n"; - }; - F9175F9F259498EA00D653BE /* Format and lint */ = { - isa = PBXShellScriptBuildPhase; - alwaysOutOfDate = 1; - buildActionMask = 2147483647; - files = ( - ); - inputFileListPaths = ( - ); - inputPaths = ( - ); - name = "Format and lint"; - outputFileListPaths = ( - ); - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "if [ -f $SRCROOT/Internal/format.sh ]; then\n $SRCROOT/Internal/format.sh \"$SRCROOT/$TARGETNAME\"\nfi\n\nif [ -f $SRCROOT/Internal/swiftlint ]; then\n cd \"$SRCROOT/$TARGETNAME\"\n $SRCROOT/Internal/swiftlint --config \"$SRCROOT/.swiftlint.yml\"\nfi\n"; - }; - F92980C027CF5149000CA5CA /* Format and lint */ = { - isa = PBXShellScriptBuildPhase; - alwaysOutOfDate = 1; - buildActionMask = 2147483647; - files = ( - ); - inputFileListPaths = ( - ); - inputPaths = ( - ); - name = "Format and lint"; - outputFileListPaths = ( - ); - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "if [ -f $SRCROOT/Internal/format.sh ]; then\n $SRCROOT/Internal/format.sh \"$SRCROOT/$TARGETNAME\"\nfi\n\nif [ -f $SRCROOT/Internal/swiftlint ]; then\n cd \"$SRCROOT/$TARGETNAME\"\n $SRCROOT/Internal/swiftlint --config \"$SRCROOT/.swiftlint.yml\"\nfi\n"; - }; - F95B6DD2252B1F6A002C9062 /* Format and lint */ = { + F95B6DD2252B1F6A002C9062 /* SwiftFormat */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( @@ -6247,14 +6163,14 @@ ); inputPaths = ( ); - name = "Format and lint"; + name = SwiftFormat; outputFileListPaths = ( ); outputPaths = ( ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; - shellScript = "if [ -f $SRCROOT/Internal/format.sh ]; then\n $SRCROOT/Internal/format.sh \"$SRCROOT/Demo\"\nfi\n\nif [ -f $SRCROOT/Internal/swiftlint ]; then\n cd \"$SRCROOT/Demo\"\n $SRCROOT/Internal/swiftlint --config \"$SRCROOT/.swiftlint.yml\"\nfi\n"; + shellScript = "swiftformatPath=/usr/local/adyen/bin/swiftformat\n\nif [ ! -f $swiftformatPath ]; then\n echo \"swiftformat CLI is not installed on your machine at $swiftformatPath, please contact IS to install it for you at /usr/local/adyen/bin/ .\"\n exit\nfi\n \n$swiftformatPath $SRCROOT\n"; }; F9615FBC252DE30B00FA8EDD /* AdyenSwiftUI configuration */ = { isa = PBXShellScriptBuildPhase; @@ -6275,25 +6191,6 @@ shellPath = /bin/sh; shellScript = "if [ -f $SRCROOT/Internal/post-commit ]; then\n $SRCROOT/Internal/post-commit\nfi\n"; }; - F9620DA223C747BD005209FC /* Format and lint */ = { - isa = PBXShellScriptBuildPhase; - alwaysOutOfDate = 1; - buildActionMask = 2147483647; - files = ( - ); - inputFileListPaths = ( - ); - inputPaths = ( - ); - name = "Format and lint"; - outputFileListPaths = ( - ); - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "if [ -f $SRCROOT/Internal/format.sh ]; then\n $SRCROOT/Internal/format.sh \"$SRCROOT/$TARGETNAME\"\nfi\n\nif [ -f $SRCROOT/Internal/swiftlint ]; then\n cd \"$SRCROOT/$TARGETNAME\"\n $SRCROOT/Internal/swiftlint --config \"$SRCROOT/.swiftlint.yml\"\nfi\n"; - }; F986B551285B4208002A471C /* Update the LocalizationKey.swift file */ = { isa = PBXShellScriptBuildPhase; alwaysOutOfDate = 1; @@ -6315,64 +6212,7 @@ shellPath = /bin/sh; shellScript = "#!/bin/bash\n\nif [ ! -f $SRCROOT/Internal/generate_localization_keys.swift ]; then\n exit 0\nfi\n\nif [ ! -z $(git diff HEAD --name-only $SCRIPT_INPUT_FILE_0) ]\nthen\n echo \"Detected changes in Localizable.strings. Generating new LocalizationKey.swift\"\n swift $SRCROOT/Internal/generate_localization_keys.swift $SCRIPT_INPUT_FILE_0 $SCRIPT_OUTPUT_FILE_0\nfi\n"; }; - F9A4A3012373235800D774E8 /* Format and lint */ = { - isa = PBXShellScriptBuildPhase; - alwaysOutOfDate = 1; - buildActionMask = 2147483647; - files = ( - ); - inputFileListPaths = ( - ); - inputPaths = ( - ); - name = "Format and lint"; - outputFileListPaths = ( - ); - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "if [ -f $SRCROOT/Internal/format.sh ]; then\n $SRCROOT/Internal/format.sh \"$SRCROOT/$TARGETNAME\"\nfi\n\nif [ -f $SRCROOT/Internal/swiftlint ]; then\n cd \"$SRCROOT/$TARGETNAME\"\n $SRCROOT/Internal/swiftlint --config \"$SRCROOT/.swiftlint.yml\"\nfi\n"; - }; - F9A4A302237323DE00D774E8 /* Format and lint */ = { - isa = PBXShellScriptBuildPhase; - alwaysOutOfDate = 1; - buildActionMask = 2147483647; - files = ( - ); - inputFileListPaths = ( - ); - inputPaths = ( - ); - name = "Format and lint"; - outputFileListPaths = ( - ); - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "if [ -f $SRCROOT/Internal/format.sh ]; then\n $SRCROOT/Internal/format.sh \"$SRCROOT/$TARGETNAME\"\nfi\n\nif [ -f $SRCROOT/Internal/swiftlint ]; then\n cd \"$SRCROOT/$TARGETNAME\"\n $SRCROOT/Internal/swiftlint --config \"$SRCROOT/.swiftlint.yml\"\nfi\n"; - }; - F9A4A303237323E700D774E8 /* Format and lint */ = { - isa = PBXShellScriptBuildPhase; - alwaysOutOfDate = 1; - buildActionMask = 2147483647; - files = ( - ); - inputFileListPaths = ( - ); - inputPaths = ( - ); - name = "Format and lint"; - outputFileListPaths = ( - ); - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "if [ -f $SRCROOT/Internal/format.sh ]; then\n $SRCROOT/Internal/format.sh \"$SRCROOT/$TARGETNAME\"\nfi\n\nif [ -f $SRCROOT/Internal/swiftlint ]; then\n cd \"$SRCROOT/$TARGETNAME\"\n $SRCROOT/Internal/swiftlint --config \"$SRCROOT/.swiftlint.yml\"\nfi\n"; - }; - F9A4A304237323EE00D774E8 /* Format and lint */ = { + F9A4A304237323EE00D774E8 /* SwiftFormat */ = { isa = PBXShellScriptBuildPhase; alwaysOutOfDate = 1; buildActionMask = 2147483647; @@ -6382,14 +6222,14 @@ ); inputPaths = ( ); - name = "Format and lint"; + name = SwiftFormat; outputFileListPaths = ( ); outputPaths = ( ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; - shellScript = "if [ -f $SRCROOT/Internal/format.sh ]; then\n $SRCROOT/Internal/format.sh \"$SRCROOT/Demo\"\nfi\n\nif [ -f $SRCROOT/Internal/swiftlint ]; then\n cd \"$SRCROOT/Demo\"\n $SRCROOT/Internal/swiftlint --config \"$SRCROOT/.swiftlint.yml\"\nfi\n"; + shellScript = "swiftformatPath=/usr/local/adyen/bin/swiftformat\n\nif [ ! -f $swiftformatPath ]; then\n echo \"swiftformat CLI is not installed on your machine at $swiftformatPath, please contact IS to install it for you at /usr/local/adyen/bin/ .\"\n exit\nfi\n \n$swiftformatPath $SRCROOT\n"; }; /* End PBXShellScriptBuildPhase section */ diff --git a/Adyen/Analytics/AnalyticsProvider/AnalyticsFlavor.swift b/Adyen/Analytics/AnalyticsProvider/AnalyticsFlavor.swift index 15a65ce8e4..3be5e08225 100644 --- a/Adyen/Analytics/AnalyticsProvider/AnalyticsFlavor.swift +++ b/Adyen/Analytics/AnalyticsProvider/AnalyticsFlavor.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Analytics/AnalyticsProvider/AnalyticsProvider.swift b/Adyen/Analytics/AnalyticsProvider/AnalyticsProvider.swift index 0ceb46df49..215b9715a0 100644 --- a/Adyen/Analytics/AnalyticsProvider/AnalyticsProvider.swift +++ b/Adyen/Analytics/AnalyticsProvider/AnalyticsProvider.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Analytics/Models/AdyenAnalytics.swift b/Adyen/Analytics/Models/AdyenAnalytics.swift index ce05d383a9..c490a5c1a0 100644 --- a/Adyen/Analytics/Models/AdyenAnalytics.swift +++ b/Adyen/Analytics/Models/AdyenAnalytics.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Analytics/Models/AnalyticsData.swift b/Adyen/Analytics/Models/AnalyticsData.swift index 5a3d612346..059b6856d6 100644 --- a/Adyen/Analytics/Models/AnalyticsData.swift +++ b/Adyen/Analytics/Models/AnalyticsData.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Analytics/Models/AnalyticsEventDataSource.swift b/Adyen/Analytics/Models/AnalyticsEventDataSource.swift index 5465957039..428e50d820 100644 --- a/Adyen/Analytics/Models/AnalyticsEventDataSource.swift +++ b/Adyen/Analytics/Models/AnalyticsEventDataSource.swift @@ -4,8 +4,8 @@ // This file is open source and available under the MIT license. See the LICENSE file for more info. // -import Foundation import AdyenNetworking +import Foundation /// Handles adding/removing events internal class AnalyticsEventDataSource: AnyAnalyticsEventDataSource { @@ -35,7 +35,7 @@ internal class AnalyticsEventDataSource: AnyAnalyticsEventDataSource { } internal func allEvents() -> AnalyticsEventWrapper? { - if infos.isEmpty && logs.isEmpty && errors.isEmpty { + if infos.isEmpty, logs.isEmpty, errors.isEmpty { return nil } return AnalyticsEventWrapper(infos: infos, diff --git a/Adyen/Analytics/Models/AnalyticsEventError.swift b/Adyen/Analytics/Models/AnalyticsEventError.swift index 6f0e6127e9..49b181b707 100644 --- a/Adyen/Analytics/Models/AnalyticsEventError.swift +++ b/Adyen/Analytics/Models/AnalyticsEventError.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Analytics/Models/AnalyticsEventInfo.swift b/Adyen/Analytics/Models/AnalyticsEventInfo.swift index 81cbb364ab..5384a684b5 100644 --- a/Adyen/Analytics/Models/AnalyticsEventInfo.swift +++ b/Adyen/Analytics/Models/AnalyticsEventInfo.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Analytics/Models/AnalyticsEventLog.swift b/Adyen/Analytics/Models/AnalyticsEventLog.swift index f990625e91..980b41d1ed 100644 --- a/Adyen/Analytics/Models/AnalyticsEventLog.swift +++ b/Adyen/Analytics/Models/AnalyticsEventLog.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Analytics/Models/ThreadSafeAnalyticsEventDataSource.swift b/Adyen/Analytics/Models/ThreadSafeAnalyticsEventDataSource.swift index 4f8cfe0a56..8db6bed450 100644 --- a/Adyen/Analytics/Models/ThreadSafeAnalyticsEventDataSource.swift +++ b/Adyen/Analytics/Models/ThreadSafeAnalyticsEventDataSource.swift @@ -65,7 +65,7 @@ internal final class ThreadSafeAnalyticsEventDataSource: AnyAnalyticsEventDataSo } internal func allEvents() -> AnalyticsEventWrapper? { - return queue.sync { + queue.sync { dataSource.allEvents() } } diff --git a/Adyen/Analytics/Requests/AnalyticsRequest.swift b/Adyen/Analytics/Requests/AnalyticsRequest.swift index 05cf0ac64a..a040122d07 100644 --- a/Adyen/Analytics/Requests/AnalyticsRequest.swift +++ b/Adyen/Analytics/Requests/AnalyticsRequest.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Analytics/Requests/InitialAnalyticsRequest.swift b/Adyen/Analytics/Requests/InitialAnalyticsRequest.swift index 37ae06ecf9..5500cc3961 100644 --- a/Adyen/Analytics/Requests/InitialAnalyticsRequest.swift +++ b/Adyen/Analytics/Requests/InitialAnalyticsRequest.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Assets/Generated/LocalizationKey.swift b/Adyen/Assets/Generated/LocalizationKey.swift index 13daa297fe..0f3dacf34c 100644 --- a/Adyen/Assets/Generated/LocalizationKey.swift +++ b/Adyen/Assets/Generated/LocalizationKey.swift @@ -1,8 +1,7 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. -// This file is autogenerated. Please do not modify it. // // swiftlint:disable all diff --git a/Adyen/Core/APIClient/APIContext.swift b/Adyen/Core/APIClient/APIContext.swift index 1cee1f5d9c..e2ec6532c5 100644 --- a/Adyen/Core/APIClient/APIContext.swift +++ b/Adyen/Core/APIClient/APIContext.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/APIClient/Environment.swift b/Adyen/Core/APIClient/Environment.swift index 4e3f8d349e..e1e8268e63 100644 --- a/Adyen/Core/APIClient/Environment.swift +++ b/Adyen/Core/APIClient/Environment.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/APIClient/Requests/APIRequest.swift b/Adyen/Core/APIClient/Requests/APIRequest.swift index 7cf6e191a3..be73efa580 100644 --- a/Adyen/Core/APIClient/Requests/APIRequest.swift +++ b/Adyen/Core/APIClient/Requests/APIRequest.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/APIClient/Requests/AppleWalletPassRequest.swift b/Adyen/Core/APIClient/Requests/AppleWalletPassRequest.swift index cd7d1f70f3..3053a46619 100644 --- a/Adyen/Core/APIClient/Requests/AppleWalletPassRequest.swift +++ b/Adyen/Core/APIClient/Requests/AppleWalletPassRequest.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/APIClient/Requests/ClientKeyRequest.swift b/Adyen/Core/APIClient/Requests/ClientKeyRequest.swift index 442379706b..d542602897 100644 --- a/Adyen/Core/APIClient/Requests/ClientKeyRequest.swift +++ b/Adyen/Core/APIClient/Requests/ClientKeyRequest.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/APIClient/Requests/OrderStatusRequest.swift b/Adyen/Core/APIClient/Requests/OrderStatusRequest.swift index 52b91d6aa2..40413612cf 100644 --- a/Adyen/Core/APIClient/Requests/OrderStatusRequest.swift +++ b/Adyen/Core/APIClient/Requests/OrderStatusRequest.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/APIClient/Requests/PaymentStatusRequest.swift b/Adyen/Core/APIClient/Requests/PaymentStatusRequest.swift index 7bddcdd703..3154e5aac1 100644 --- a/Adyen/Core/APIClient/Requests/PaymentStatusRequest.swift +++ b/Adyen/Core/APIClient/Requests/PaymentStatusRequest.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/APIClient/Responses/AppleWalletPassResponse.swift b/Adyen/Core/APIClient/Responses/AppleWalletPassResponse.swift index 690eb133e0..cf6a04c213 100644 --- a/Adyen/Core/APIClient/Responses/AppleWalletPassResponse.swift +++ b/Adyen/Core/APIClient/Responses/AppleWalletPassResponse.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/APIClient/Responses/ClientKeyResponse.swift b/Adyen/Core/APIClient/Responses/ClientKeyResponse.swift index 526590b294..89dd9e0395 100644 --- a/Adyen/Core/APIClient/Responses/ClientKeyResponse.swift +++ b/Adyen/Core/APIClient/Responses/ClientKeyResponse.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/APIClient/Responses/OrderStatusResponse.swift b/Adyen/Core/APIClient/Responses/OrderStatusResponse.swift index a865c64eb4..410c6cf25f 100644 --- a/Adyen/Core/APIClient/Responses/OrderStatusResponse.swift +++ b/Adyen/Core/APIClient/Responses/OrderStatusResponse.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/APIClient/Responses/PaymentStatusResponse.swift b/Adyen/Core/APIClient/Responses/PaymentStatusResponse.swift index bc769daf04..72da932dd8 100644 --- a/Adyen/Core/APIClient/Responses/PaymentStatusResponse.swift +++ b/Adyen/Core/APIClient/Responses/PaymentStatusResponse.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/AdyenContext/AdyenContext.swift b/Adyen/Core/AdyenContext/AdyenContext.swift index 9252164ad2..7864e2c255 100644 --- a/Adyen/Core/AdyenContext/AdyenContext.swift +++ b/Adyen/Core/AdyenContext/AdyenContext.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // @@ -59,7 +59,7 @@ public final class AdyenContext: PaymentAware { private static func createAnalyticsProvider(apiContext: APIContext, analyticsConfiguration: AnalyticsConfiguration) -> AnalyticsProviderProtocol? { guard let analyticsEnvironment = (apiContext.environment as? Environment)?.toAnalyticsEnvironment(), - let analyticsApiContext = try? APIContext(environment: analyticsEnvironment, + let analyticsApiContext = try? APIContext(environment: analyticsEnvironment, clientKey: apiContext.clientKey) else { return nil } diff --git a/Adyen/Core/Components/AbstractPersonalInformationComponent/AbstractPersonalInformationComponent+Extensions.swift b/Adyen/Core/Components/AbstractPersonalInformationComponent/AbstractPersonalInformationComponent+Extensions.swift index 5e9c6d6834..af877ec44e 100644 --- a/Adyen/Core/Components/AbstractPersonalInformationComponent/AbstractPersonalInformationComponent+Extensions.swift +++ b/Adyen/Core/Components/AbstractPersonalInformationComponent/AbstractPersonalInformationComponent+Extensions.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/Components/AbstractPersonalInformationComponent/EmailFormItemInjector.swift b/Adyen/Core/Components/AbstractPersonalInformationComponent/EmailFormItemInjector.swift index 08a369bd60..ca99714cde 100644 --- a/Adyen/Core/Components/AbstractPersonalInformationComponent/EmailFormItemInjector.swift +++ b/Adyen/Core/Components/AbstractPersonalInformationComponent/EmailFormItemInjector.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/Components/AbstractPersonalInformationComponent/FormItemInjector.swift b/Adyen/Core/Components/AbstractPersonalInformationComponent/FormItemInjector.swift index cf58ef11c7..95b97ca6db 100644 --- a/Adyen/Core/Components/AbstractPersonalInformationComponent/FormItemInjector.swift +++ b/Adyen/Core/Components/AbstractPersonalInformationComponent/FormItemInjector.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/Components/AbstractPersonalInformationComponent/NameFormItemInjector.swift b/Adyen/Core/Components/AbstractPersonalInformationComponent/NameFormItemInjector.swift index 3752731fa5..d191be48b3 100644 --- a/Adyen/Core/Components/AbstractPersonalInformationComponent/NameFormItemInjector.swift +++ b/Adyen/Core/Components/AbstractPersonalInformationComponent/NameFormItemInjector.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/Components/AbstractPersonalInformationComponent/PhoneFormItemInjector.swift b/Adyen/Core/Components/AbstractPersonalInformationComponent/PhoneFormItemInjector.swift index 99c0daa497..d46df5642c 100644 --- a/Adyen/Core/Components/AbstractPersonalInformationComponent/PhoneFormItemInjector.swift +++ b/Adyen/Core/Components/AbstractPersonalInformationComponent/PhoneFormItemInjector.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/Components/AlreadyPaidPaymentComponent.swift b/Adyen/Core/Components/AlreadyPaidPaymentComponent.swift index e7d0660c81..b964d9fac1 100644 --- a/Adyen/Core/Components/AlreadyPaidPaymentComponent.swift +++ b/Adyen/Core/Components/AlreadyPaidPaymentComponent.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/Components/AnyCashAppPayConfiguration.swift b/Adyen/Core/Components/AnyCashAppPayConfiguration.swift index bd7a917486..d8f04c0935 100644 --- a/Adyen/Core/Components/AnyCashAppPayConfiguration.swift +++ b/Adyen/Core/Components/AnyCashAppPayConfiguration.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/Components/Base/ActionComponentData.swift b/Adyen/Core/Components/Base/ActionComponentData.swift index 8b790f4fcc..4c83c83124 100644 --- a/Adyen/Core/Components/Base/ActionComponentData.swift +++ b/Adyen/Core/Components/Base/ActionComponentData.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/Components/Base/BasicComponentConfiguration.swift b/Adyen/Core/Components/Base/BasicComponentConfiguration.swift index 7ae40edf44..e700d2d031 100644 --- a/Adyen/Core/Components/Base/BasicComponentConfiguration.swift +++ b/Adyen/Core/Components/Base/BasicComponentConfiguration.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/Components/Base/PartialPaymentError.swift b/Adyen/Core/Components/Base/PartialPaymentError.swift index 3d3ef123b1..f911a31aa5 100644 --- a/Adyen/Core/Components/Base/PartialPaymentError.swift +++ b/Adyen/Core/Components/Base/PartialPaymentError.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/Components/Base/PresentableComponentWrapper.swift b/Adyen/Core/Components/Base/PresentableComponentWrapper.swift index 58bfcc12bb..ac35049c65 100644 --- a/Adyen/Core/Components/Base/PresentableComponentWrapper.swift +++ b/Adyen/Core/Components/Base/PresentableComponentWrapper.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/Components/Installment/InstallmentOptions.swift b/Adyen/Core/Components/Installment/InstallmentOptions.swift index 199f5ff4d9..5f2c0c8c77 100644 --- a/Adyen/Core/Components/Installment/InstallmentOptions.swift +++ b/Adyen/Core/Components/Installment/InstallmentOptions.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/Components/InstantPaymentComponent.swift b/Adyen/Core/Components/InstantPaymentComponent.swift index 0865f3ebe2..8c3195c99b 100644 --- a/Adyen/Core/Components/InstantPaymentComponent.swift +++ b/Adyen/Core/Components/InstantPaymentComponent.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/Components/StoredPaymentMethodComponent.swift b/Adyen/Core/Components/StoredPaymentMethodComponent.swift index 21901ac02e..7e46552f84 100644 --- a/Adyen/Core/Components/StoredPaymentMethodComponent.swift +++ b/Adyen/Core/Components/StoredPaymentMethodComponent.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/Core Protocols/ActionComponent.swift b/Adyen/Core/Core Protocols/ActionComponent.swift index a09c5bcf6e..c2b143b5b8 100644 --- a/Adyen/Core/Core Protocols/ActionComponent.swift +++ b/Adyen/Core/Core Protocols/ActionComponent.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/Core Protocols/AdyenSessionAware.swift b/Adyen/Core/Core Protocols/AdyenSessionAware.swift index ebc1aeb078..e3a5a5ae45 100644 --- a/Adyen/Core/Core Protocols/AdyenSessionAware.swift +++ b/Adyen/Core/Core Protocols/AdyenSessionAware.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/Core Protocols/AnyDropInComponent.swift b/Adyen/Core/Core Protocols/AnyDropInComponent.swift index e85831d47d..553ce01936 100644 --- a/Adyen/Core/Core Protocols/AnyDropInComponent.swift +++ b/Adyen/Core/Core Protocols/AnyDropInComponent.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/Core Protocols/Component.swift b/Adyen/Core/Core Protocols/Component.swift index d15f89b0e3..7f3e3f543a 100644 --- a/Adyen/Core/Core Protocols/Component.swift +++ b/Adyen/Core/Core Protocols/Component.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/Core Protocols/Details.swift b/Adyen/Core/Core Protocols/Details.swift index 78e5731cde..787d49c918 100644 --- a/Adyen/Core/Core Protocols/Details.swift +++ b/Adyen/Core/Core Protocols/Details.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/Core Protocols/DeviceDependent.swift b/Adyen/Core/Core Protocols/DeviceDependent.swift index dbbc37918f..af8b85bea0 100644 --- a/Adyen/Core/Core Protocols/DeviceDependent.swift +++ b/Adyen/Core/Core Protocols/DeviceDependent.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/Core Protocols/DropInComponentDelegate.swift b/Adyen/Core/Core Protocols/DropInComponentDelegate.swift index b123540601..eccd33ef46 100644 --- a/Adyen/Core/Core Protocols/DropInComponentDelegate.swift +++ b/Adyen/Core/Core Protocols/DropInComponentDelegate.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/Core Protocols/LoadingComponent.swift b/Adyen/Core/Core Protocols/LoadingComponent.swift index 697003f2b8..ac15cd0d5d 100644 --- a/Adyen/Core/Core Protocols/LoadingComponent.swift +++ b/Adyen/Core/Core Protocols/LoadingComponent.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/Core Protocols/PartialPaymentComponent.swift b/Adyen/Core/Core Protocols/PartialPaymentComponent.swift index ff9968a421..328e677ee7 100644 --- a/Adyen/Core/Core Protocols/PartialPaymentComponent.swift +++ b/Adyen/Core/Core Protocols/PartialPaymentComponent.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/Core Protocols/PartialPaymentDelegate.swift b/Adyen/Core/Core Protocols/PartialPaymentDelegate.swift index 78bbe36407..2fc01ce4ce 100644 --- a/Adyen/Core/Core Protocols/PartialPaymentDelegate.swift +++ b/Adyen/Core/Core Protocols/PartialPaymentDelegate.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/Core Protocols/PaymentAwareComponent.swift b/Adyen/Core/Core Protocols/PaymentAwareComponent.swift index a978be91e6..d1499262c3 100644 --- a/Adyen/Core/Core Protocols/PaymentAwareComponent.swift +++ b/Adyen/Core/Core Protocols/PaymentAwareComponent.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/Core Protocols/PaymentComponent.swift b/Adyen/Core/Core Protocols/PaymentComponent.swift index 03f179fb44..b238dcfa53 100644 --- a/Adyen/Core/Core Protocols/PaymentComponent.swift +++ b/Adyen/Core/Core Protocols/PaymentComponent.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/Core Protocols/PaymentComponentBuilder.swift b/Adyen/Core/Core Protocols/PaymentComponentBuilder.swift index 030100027d..2781188f37 100644 --- a/Adyen/Core/Core Protocols/PaymentComponentBuilder.swift +++ b/Adyen/Core/Core Protocols/PaymentComponentBuilder.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/Core Protocols/PaymentMethod.swift b/Adyen/Core/Core Protocols/PaymentMethod.swift index 4824d8f545..95d1a32a77 100644 --- a/Adyen/Core/Core Protocols/PaymentMethod.swift +++ b/Adyen/Core/Core Protocols/PaymentMethod.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/Core Protocols/PresentableComponent.swift b/Adyen/Core/Core Protocols/PresentableComponent.swift index b0cb2f6ea0..662bfd1e52 100644 --- a/Adyen/Core/Core Protocols/PresentableComponent.swift +++ b/Adyen/Core/Core Protocols/PresentableComponent.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/Core Protocols/PresentationDelegate.swift b/Adyen/Core/Core Protocols/PresentationDelegate.swift index 157633b7d9..d19ae1525d 100644 --- a/Adyen/Core/Core Protocols/PresentationDelegate.swift +++ b/Adyen/Core/Core Protocols/PresentationDelegate.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/Core Protocols/ReadyToSubmitPaymentComponentDelegate.swift b/Adyen/Core/Core Protocols/ReadyToSubmitPaymentComponentDelegate.swift index 06945c741d..fc16cc9234 100644 --- a/Adyen/Core/Core Protocols/ReadyToSubmitPaymentComponentDelegate.swift +++ b/Adyen/Core/Core Protocols/ReadyToSubmitPaymentComponentDelegate.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/Core Protocols/ViewControllerPresenter.swift b/Adyen/Core/Core Protocols/ViewControllerPresenter.swift index 568cf20819..592344f2fe 100644 --- a/Adyen/Core/Core Protocols/ViewControllerPresenter.swift +++ b/Adyen/Core/Core Protocols/ViewControllerPresenter.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/Errors/APIError.swift b/Adyen/Core/Errors/APIError.swift index dd22615083..33a9b02f41 100644 --- a/Adyen/Core/Errors/APIError.swift +++ b/Adyen/Core/Errors/APIError.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/Errors/AppleWalletError.swift b/Adyen/Core/Errors/AppleWalletError.swift index 974bac71a1..16e114c52f 100644 --- a/Adyen/Core/Errors/AppleWalletError.swift +++ b/Adyen/Core/Errors/AppleWalletError.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/Errors/ComponentError.swift b/Adyen/Core/Errors/ComponentError.swift index 73de3696ad..0eb2bc1024 100644 --- a/Adyen/Core/Errors/ComponentError.swift +++ b/Adyen/Core/Errors/ComponentError.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/Errors/UnknownError.swift b/Adyen/Core/Errors/UnknownError.swift index 43ac645d01..b7811b6c41 100644 --- a/Adyen/Core/Errors/UnknownError.swift +++ b/Adyen/Core/Errors/UnknownError.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/Models/CardType.swift b/Adyen/Core/Models/CardType.swift index 83702ca381..1eb722041f 100644 --- a/Adyen/Core/Models/CardType.swift +++ b/Adyen/Core/Models/CardType.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/Models/DisplayInformation.swift b/Adyen/Core/Models/DisplayInformation.swift index 1573978da4..0398eefa88 100644 --- a/Adyen/Core/Models/DisplayInformation.swift +++ b/Adyen/Core/Models/DisplayInformation.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/Models/ShopperInteraction.swift b/Adyen/Core/Models/ShopperInteraction.swift index 92c455a9c5..7f1d78680e 100644 --- a/Adyen/Core/Models/ShopperInteraction.swift +++ b/Adyen/Core/Models/ShopperInteraction.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/Payment Methods/ACHDirectDebitPaymentMethod.swift b/Adyen/Core/Payment Methods/ACHDirectDebitPaymentMethod.swift index aae8d3ac01..2df7d1a44e 100644 --- a/Adyen/Core/Payment Methods/ACHDirectDebitPaymentMethod.swift +++ b/Adyen/Core/Payment Methods/ACHDirectDebitPaymentMethod.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/Payment Methods/Abstract/AnyCardPaymentMethod.swift b/Adyen/Core/Payment Methods/Abstract/AnyCardPaymentMethod.swift index 2f7ccde295..f15901134a 100644 --- a/Adyen/Core/Payment Methods/Abstract/AnyCardPaymentMethod.swift +++ b/Adyen/Core/Payment Methods/Abstract/AnyCardPaymentMethod.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/Payment Methods/Abstract/AnyPaymentMethod.swift b/Adyen/Core/Payment Methods/Abstract/AnyPaymentMethod.swift index 73add95e16..63c3322689 100644 --- a/Adyen/Core/Payment Methods/Abstract/AnyPaymentMethod.swift +++ b/Adyen/Core/Payment Methods/Abstract/AnyPaymentMethod.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/Payment Methods/Abstract/AnyPaymentMethodDecoder.swift b/Adyen/Core/Payment Methods/Abstract/AnyPaymentMethodDecoder.swift index 6a7301248e..e06f5fd1d6 100644 --- a/Adyen/Core/Payment Methods/Abstract/AnyPaymentMethodDecoder.swift +++ b/Adyen/Core/Payment Methods/Abstract/AnyPaymentMethodDecoder.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/Payment Methods/Abstract/PaymentMethodType.swift b/Adyen/Core/Payment Methods/Abstract/PaymentMethodType.swift index bd69fee087..66c4d0e475 100644 --- a/Adyen/Core/Payment Methods/Abstract/PaymentMethodType.swift +++ b/Adyen/Core/Payment Methods/Abstract/PaymentMethodType.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/Payment Methods/Abstract/PaymentMethods.swift b/Adyen/Core/Payment Methods/Abstract/PaymentMethods.swift index 5fd62a82bd..a836c1366c 100644 --- a/Adyen/Core/Payment Methods/Abstract/PaymentMethods.swift +++ b/Adyen/Core/Payment Methods/Abstract/PaymentMethods.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/Payment Methods/AffirmPaymentMethod.swift b/Adyen/Core/Payment Methods/AffirmPaymentMethod.swift index c622f06e78..4910a2406d 100644 --- a/Adyen/Core/Payment Methods/AffirmPaymentMethod.swift +++ b/Adyen/Core/Payment Methods/AffirmPaymentMethod.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/Payment Methods/ApplePayPaymentMethod.swift b/Adyen/Core/Payment Methods/ApplePayPaymentMethod.swift index 9b06bea3df..f3f69b0256 100644 --- a/Adyen/Core/Payment Methods/ApplePayPaymentMethod.swift +++ b/Adyen/Core/Payment Methods/ApplePayPaymentMethod.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/Payment Methods/AtomePaymentMethod.swift b/Adyen/Core/Payment Methods/AtomePaymentMethod.swift index 280e3220c3..22fbbada8d 100644 --- a/Adyen/Core/Payment Methods/AtomePaymentMethod.swift +++ b/Adyen/Core/Payment Methods/AtomePaymentMethod.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/Payment Methods/BACSDirectDebitPaymentMethod.swift b/Adyen/Core/Payment Methods/BACSDirectDebitPaymentMethod.swift index aa9fb6bf1a..3ac99f5a0b 100644 --- a/Adyen/Core/Payment Methods/BACSDirectDebitPaymentMethod.swift +++ b/Adyen/Core/Payment Methods/BACSDirectDebitPaymentMethod.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/Payment Methods/BCMCPaymentMethod.swift b/Adyen/Core/Payment Methods/BCMCPaymentMethod.swift index 909125d7d8..23e7b0c234 100644 --- a/Adyen/Core/Payment Methods/BCMCPaymentMethod.swift +++ b/Adyen/Core/Payment Methods/BCMCPaymentMethod.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/Payment Methods/BLIKPaymentMethod.swift b/Adyen/Core/Payment Methods/BLIKPaymentMethod.swift index dca0faf4a2..2f4788c7b4 100644 --- a/Adyen/Core/Payment Methods/BLIKPaymentMethod.swift +++ b/Adyen/Core/Payment Methods/BLIKPaymentMethod.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/Payment Methods/BoletoPaymentMethod.swift b/Adyen/Core/Payment Methods/BoletoPaymentMethod.swift index fac177b862..1f7b1fd887 100644 --- a/Adyen/Core/Payment Methods/BoletoPaymentMethod.swift +++ b/Adyen/Core/Payment Methods/BoletoPaymentMethod.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/Payment Methods/CardPaymentMethod.swift b/Adyen/Core/Payment Methods/CardPaymentMethod.swift index 2ea33695d6..834b8f2fc9 100644 --- a/Adyen/Core/Payment Methods/CardPaymentMethod.swift +++ b/Adyen/Core/Payment Methods/CardPaymentMethod.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/Payment Methods/CashAppPaymentMethod.swift b/Adyen/Core/Payment Methods/CashAppPaymentMethod.swift index 85d1268131..25e0c95572 100644 --- a/Adyen/Core/Payment Methods/CashAppPaymentMethod.swift +++ b/Adyen/Core/Payment Methods/CashAppPaymentMethod.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/Payment Methods/DokuPaymentMethod.swift b/Adyen/Core/Payment Methods/DokuPaymentMethod.swift index 8776e6f2fd..e1d2297723 100644 --- a/Adyen/Core/Payment Methods/DokuPaymentMethod.swift +++ b/Adyen/Core/Payment Methods/DokuPaymentMethod.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/Payment Methods/EContextPaymentMethod.swift b/Adyen/Core/Payment Methods/EContextPaymentMethod.swift index 6932ddfb7c..161bd34c96 100644 --- a/Adyen/Core/Payment Methods/EContextPaymentMethod.swift +++ b/Adyen/Core/Payment Methods/EContextPaymentMethod.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/Payment Methods/GiftCardPaymentMethod.swift b/Adyen/Core/Payment Methods/GiftCardPaymentMethod.swift index 2a3e6e9481..856b923f02 100644 --- a/Adyen/Core/Payment Methods/GiftCardPaymentMethod.swift +++ b/Adyen/Core/Payment Methods/GiftCardPaymentMethod.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/Payment Methods/InstantPaymentMethod.swift b/Adyen/Core/Payment Methods/InstantPaymentMethod.swift index 21a2fd0015..d7c9c8fc95 100644 --- a/Adyen/Core/Payment Methods/InstantPaymentMethod.swift +++ b/Adyen/Core/Payment Methods/InstantPaymentMethod.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/Payment Methods/IssuerListPaymentMethod.swift b/Adyen/Core/Payment Methods/IssuerListPaymentMethod.swift index ea227a8733..e90d3bf67c 100644 --- a/Adyen/Core/Payment Methods/IssuerListPaymentMethod.swift +++ b/Adyen/Core/Payment Methods/IssuerListPaymentMethod.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/Payment Methods/MBWayPaymentMethod.swift b/Adyen/Core/Payment Methods/MBWayPaymentMethod.swift index d06be74b2d..f7b557ab20 100644 --- a/Adyen/Core/Payment Methods/MBWayPaymentMethod.swift +++ b/Adyen/Core/Payment Methods/MBWayPaymentMethod.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/Payment Methods/MealVoucherPaymentMethod.swift b/Adyen/Core/Payment Methods/MealVoucherPaymentMethod.swift index 17351defb6..3474634604 100644 --- a/Adyen/Core/Payment Methods/MealVoucherPaymentMethod.swift +++ b/Adyen/Core/Payment Methods/MealVoucherPaymentMethod.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/Payment Methods/OnlineBankingPaymentMethod.swift b/Adyen/Core/Payment Methods/OnlineBankingPaymentMethod.swift index ea8af70e7a..83e3f9af6f 100644 --- a/Adyen/Core/Payment Methods/OnlineBankingPaymentMethod.swift +++ b/Adyen/Core/Payment Methods/OnlineBankingPaymentMethod.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/Payment Methods/QiwiWalletPaymentMethod.swift b/Adyen/Core/Payment Methods/QiwiWalletPaymentMethod.swift index 6fddd5fec1..0c7489580f 100644 --- a/Adyen/Core/Payment Methods/QiwiWalletPaymentMethod.swift +++ b/Adyen/Core/Payment Methods/QiwiWalletPaymentMethod.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/Payment Methods/SEPADirectDebitPaymentMethod.swift b/Adyen/Core/Payment Methods/SEPADirectDebitPaymentMethod.swift index 37d5f762ec..a9763294e3 100644 --- a/Adyen/Core/Payment Methods/SEPADirectDebitPaymentMethod.swift +++ b/Adyen/Core/Payment Methods/SEPADirectDebitPaymentMethod.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/Payment Methods/StoredBCMCPaymentMethod.swift b/Adyen/Core/Payment Methods/StoredBCMCPaymentMethod.swift index de08250a46..574c17da4a 100644 --- a/Adyen/Core/Payment Methods/StoredBCMCPaymentMethod.swift +++ b/Adyen/Core/Payment Methods/StoredBCMCPaymentMethod.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/Payment Methods/StoredBLIKPaymentMethod.swift b/Adyen/Core/Payment Methods/StoredBLIKPaymentMethod.swift index 9f6c78a6f9..034bbc7fab 100644 --- a/Adyen/Core/Payment Methods/StoredBLIKPaymentMethod.swift +++ b/Adyen/Core/Payment Methods/StoredBLIKPaymentMethod.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/Payment Methods/StoredCashAppPayPaymentMethod.swift b/Adyen/Core/Payment Methods/StoredCashAppPayPaymentMethod.swift index b397cde435..21795aa1ac 100644 --- a/Adyen/Core/Payment Methods/StoredCashAppPayPaymentMethod.swift +++ b/Adyen/Core/Payment Methods/StoredCashAppPayPaymentMethod.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/Payment Methods/StoredInstantPaymentMethod.swift b/Adyen/Core/Payment Methods/StoredInstantPaymentMethod.swift index 530181d5c8..5c18a6c0f6 100644 --- a/Adyen/Core/Payment Methods/StoredInstantPaymentMethod.swift +++ b/Adyen/Core/Payment Methods/StoredInstantPaymentMethod.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/Payment Methods/StoredPayPalPaymentMethod.swift b/Adyen/Core/Payment Methods/StoredPayPalPaymentMethod.swift index 6152fa9725..03b52b1d21 100644 --- a/Adyen/Core/Payment Methods/StoredPayPalPaymentMethod.swift +++ b/Adyen/Core/Payment Methods/StoredPayPalPaymentMethod.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/Payment Methods/UPIPaymentMethod.swift b/Adyen/Core/Payment Methods/UPIPaymentMethod.swift index f7f4638a1a..e6790ae1e1 100644 --- a/Adyen/Core/Payment Methods/UPIPaymentMethod.swift +++ b/Adyen/Core/Payment Methods/UPIPaymentMethod.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/Payment Methods/WeChatPayPaymentMethod.swift b/Adyen/Core/Payment Methods/WeChatPayPaymentMethod.swift index 34da38d6cf..3240aa1922 100644 --- a/Adyen/Core/Payment Methods/WeChatPayPaymentMethod.swift +++ b/Adyen/Core/Payment Methods/WeChatPayPaymentMethod.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/ToolBar/CancellableToolBar.swift b/Adyen/Core/ToolBar/CancellableToolBar.swift index 2f96b968b4..9f34a1816b 100644 --- a/Adyen/Core/ToolBar/CancellableToolBar.swift +++ b/Adyen/Core/ToolBar/CancellableToolBar.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Core/ToolBar/ModalToolbar.swift b/Adyen/Core/ToolBar/ModalToolbar.swift index cef2ba9fd5..c32c0807ce 100644 --- a/Adyen/Core/ToolBar/ModalToolbar.swift +++ b/Adyen/Core/ToolBar/ModalToolbar.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Formatters/AmountFormatter.swift b/Adyen/Formatters/AmountFormatter.swift index 95b53efa0c..1771da3518 100644 --- a/Adyen/Formatters/AmountFormatter.swift +++ b/Adyen/Formatters/AmountFormatter.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Formatters/BrazilSocialSecurityNumberFormatter.swift b/Adyen/Formatters/BrazilSocialSecurityNumberFormatter.swift index 4cec123500..3807ff5c5e 100644 --- a/Adyen/Formatters/BrazilSocialSecurityNumberFormatter.swift +++ b/Adyen/Formatters/BrazilSocialSecurityNumberFormatter.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Formatters/Formatter.swift b/Adyen/Formatters/Formatter.swift index 87b78a669f..131f7abc5d 100644 --- a/Adyen/Formatters/Formatter.swift +++ b/Adyen/Formatters/Formatter.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Formatters/IBANFormatter.swift b/Adyen/Formatters/IBANFormatter.swift index 483944c63c..37e39d00a0 100644 --- a/Adyen/Formatters/IBANFormatter.swift +++ b/Adyen/Formatters/IBANFormatter.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Formatters/NumericFormatter.swift b/Adyen/Formatters/NumericFormatter.swift index 14675da0e6..b5202d9f5c 100644 --- a/Adyen/Formatters/NumericFormatter.swift +++ b/Adyen/Formatters/NumericFormatter.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Helpers/AdyenDependencies.swift b/Adyen/Helpers/AdyenDependencies.swift index 65a9e70254..07bb7db347 100644 --- a/Adyen/Helpers/AdyenDependencies.swift +++ b/Adyen/Helpers/AdyenDependencies.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Helpers/AdyenScope.swift b/Adyen/Helpers/AdyenScope.swift index ca39351389..cb7d73ad18 100644 --- a/Adyen/Helpers/AdyenScope.swift +++ b/Adyen/Helpers/AdyenScope.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Helpers/AdyenSdkVersion.swift b/Adyen/Helpers/AdyenSdkVersion.swift index 10f19a2e57..d9ff812628 100644 --- a/Adyen/Helpers/AdyenSdkVersion.swift +++ b/Adyen/Helpers/AdyenSdkVersion.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Helpers/ArrayHelpers.swift b/Adyen/Helpers/ArrayHelpers.swift index fce8e0ca56..45857792c4 100644 --- a/Adyen/Helpers/ArrayHelpers.swift +++ b/Adyen/Helpers/ArrayHelpers.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Helpers/BundleHelpers.swift b/Adyen/Helpers/BundleHelpers.swift index 179f23909a..9534b3143e 100644 --- a/Adyen/Helpers/BundleHelpers.swift +++ b/Adyen/Helpers/BundleHelpers.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Helpers/KeyedDecodingContainerHelpers.swift b/Adyen/Helpers/KeyedDecodingContainerHelpers.swift index b1ee7f2d50..a14bc684dc 100644 --- a/Adyen/Helpers/KeyedDecodingContainerHelpers.swift +++ b/Adyen/Helpers/KeyedDecodingContainerHelpers.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Helpers/NSConstraintHelper.swift b/Adyen/Helpers/NSConstraintHelper.swift index c515a839e5..db6d38ad38 100644 --- a/Adyen/Helpers/NSConstraintHelper.swift +++ b/Adyen/Helpers/NSConstraintHelper.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Helpers/NSTextAlignmentHelpers.swift b/Adyen/Helpers/NSTextAlignmentHelpers.swift index dd4af95e5a..72f06eb4ce 100644 --- a/Adyen/Helpers/NSTextAlignmentHelpers.swift +++ b/Adyen/Helpers/NSTextAlignmentHelpers.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Helpers/ResultHelpers.swift b/Adyen/Helpers/ResultHelpers.swift index 13737a71ba..09510e329d 100644 --- a/Adyen/Helpers/ResultHelpers.swift +++ b/Adyen/Helpers/ResultHelpers.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Helpers/StringHelpers.swift b/Adyen/Helpers/StringHelpers.swift index bb8e8ebb3d..7a7f731caf 100644 --- a/Adyen/Helpers/StringHelpers.swift +++ b/Adyen/Helpers/StringHelpers.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Helpers/TimeIntervalHelpers.swift b/Adyen/Helpers/TimeIntervalHelpers.swift index d34c158357..6fa9248183 100644 --- a/Adyen/Helpers/TimeIntervalHelpers.swift +++ b/Adyen/Helpers/TimeIntervalHelpers.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Helpers/UIApplicationHelpers.swift b/Adyen/Helpers/UIApplicationHelpers.swift index a47200b97c..683700ac78 100644 --- a/Adyen/Helpers/UIApplicationHelpers.swift +++ b/Adyen/Helpers/UIApplicationHelpers.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Helpers/UIButtonHelpers.swift b/Adyen/Helpers/UIButtonHelpers.swift index 9169a20d8c..d49de79d94 100644 --- a/Adyen/Helpers/UIButtonHelpers.swift +++ b/Adyen/Helpers/UIButtonHelpers.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Helpers/UIColorHelpers.swift b/Adyen/Helpers/UIColorHelpers.swift index c11485c21f..0cd29e7f0c 100644 --- a/Adyen/Helpers/UIColorHelpers.swift +++ b/Adyen/Helpers/UIColorHelpers.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Helpers/UIFontHelpers.swift b/Adyen/Helpers/UIFontHelpers.swift index a13db277d8..cc36cff900 100644 --- a/Adyen/Helpers/UIFontHelpers.swift +++ b/Adyen/Helpers/UIFontHelpers.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Helpers/UIImageViewHelpers.swift b/Adyen/Helpers/UIImageViewHelpers.swift index 1dea7dda4e..c693c30f77 100644 --- a/Adyen/Helpers/UIImageViewHelpers.swift +++ b/Adyen/Helpers/UIImageViewHelpers.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Helpers/UILabelHelpers.swift b/Adyen/Helpers/UILabelHelpers.swift index ba6557b9ca..d02341f0d5 100644 --- a/Adyen/Helpers/UILabelHelpers.swift +++ b/Adyen/Helpers/UILabelHelpers.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Helpers/UIProgressViewHelpers.swift b/Adyen/Helpers/UIProgressViewHelpers.swift index a717a89c5f..375d781bd0 100644 --- a/Adyen/Helpers/UIProgressViewHelpers.swift +++ b/Adyen/Helpers/UIProgressViewHelpers.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Helpers/UIViewAnimation.swift b/Adyen/Helpers/UIViewAnimation.swift index 55ed43667e..b5e7679d85 100644 --- a/Adyen/Helpers/UIViewAnimation.swift +++ b/Adyen/Helpers/UIViewAnimation.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Helpers/UIViewConstraintsHelper.swift b/Adyen/Helpers/UIViewConstraintsHelper.swift index 91fa22022c..38756a0a22 100644 --- a/Adyen/Helpers/UIViewConstraintsHelper.swift +++ b/Adyen/Helpers/UIViewConstraintsHelper.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Helpers/UIViewControllerHelpers.swift b/Adyen/Helpers/UIViewControllerHelpers.swift index f7fe2b101d..cb8ed8a078 100644 --- a/Adyen/Helpers/UIViewControllerHelpers.swift +++ b/Adyen/Helpers/UIViewControllerHelpers.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Helpers/UIViewHelpers.swift b/Adyen/Helpers/UIViewHelpers.swift index f637316b8e..32f2c02c2d 100644 --- a/Adyen/Helpers/UIViewHelpers.swift +++ b/Adyen/Helpers/UIViewHelpers.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Helpers/UIViewRoundingHelpers.swift b/Adyen/Helpers/UIViewRoundingHelpers.swift index 6bb51ad78e..e071d1f715 100644 --- a/Adyen/Helpers/UIViewRoundingHelpers.swift +++ b/Adyen/Helpers/UIViewRoundingHelpers.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Helpers/URLHelpers.swift b/Adyen/Helpers/URLHelpers.swift index 884972dcd6..5f397f296c 100644 --- a/Adyen/Helpers/URLHelpers.swift +++ b/Adyen/Helpers/URLHelpers.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Model/Amount.swift b/Adyen/Model/Amount.swift index bfa9d39886..36205ba5be 100644 --- a/Adyen/Model/Amount.swift +++ b/Adyen/Model/Amount.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Model/AnyEncodable.swift b/Adyen/Model/AnyEncodable.swift index 31cbdedecf..d3db67d995 100644 --- a/Adyen/Model/AnyEncodable.swift +++ b/Adyen/Model/AnyEncodable.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Model/Balance.swift b/Adyen/Model/Balance.swift index b5d9d526a2..091fd15929 100644 --- a/Adyen/Model/Balance.swift +++ b/Adyen/Model/Balance.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Model/BrowserInfo.swift b/Adyen/Model/BrowserInfo.swift index 0087bf17a9..a328ea0682 100644 --- a/Adyen/Model/BrowserInfo.swift +++ b/Adyen/Model/BrowserInfo.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Model/DelegatedAuthenticationData.swift b/Adyen/Model/DelegatedAuthenticationData.swift index e1d97b627b..523370c36c 100644 --- a/Adyen/Model/DelegatedAuthenticationData.swift +++ b/Adyen/Model/DelegatedAuthenticationData.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Model/Installments.swift b/Adyen/Model/Installments.swift index 9e4d1861b4..aec4b3c645 100644 --- a/Adyen/Model/Installments.swift +++ b/Adyen/Model/Installments.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Model/PartialPaymentOrder.swift b/Adyen/Model/PartialPaymentOrder.swift index cd22ce48d4..be842a9f1b 100644 --- a/Adyen/Model/PartialPaymentOrder.swift +++ b/Adyen/Model/PartialPaymentOrder.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Model/Payment.swift b/Adyen/Model/Payment.swift index c95181a9f3..0dc51886a6 100644 --- a/Adyen/Model/Payment.swift +++ b/Adyen/Model/Payment.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Model/PaymentComponentData.swift b/Adyen/Model/PaymentComponentData.swift index c7fe4cca86..2de0db6d87 100644 --- a/Adyen/Model/PaymentComponentData.swift +++ b/Adyen/Model/PaymentComponentData.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Model/PostalAddress.swift b/Adyen/Model/PostalAddress.swift index 52b1ec462b..d5c5940962 100644 --- a/Adyen/Model/PostalAddress.swift +++ b/Adyen/Model/PostalAddress.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Model/PrefilledShopperInformation.swift b/Adyen/Model/PrefilledShopperInformation.swift index 31d490e934..1824933dea 100644 --- a/Adyen/Model/PrefilledShopperInformation.swift +++ b/Adyen/Model/PrefilledShopperInformation.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Model/ShopperInformation.swift b/Adyen/Model/ShopperInformation.swift index 4a5e966d21..2ce3694986 100644 --- a/Adyen/Model/ShopperInformation.swift +++ b/Adyen/Model/ShopperInformation.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Model/StorePaymentMethodFieldAware.swift b/Adyen/Model/StorePaymentMethodFieldAware.swift index 4dd15a3ea4..c543bf8997 100644 --- a/Adyen/Model/StorePaymentMethodFieldAware.swift +++ b/Adyen/Model/StorePaymentMethodFieldAware.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Dimensions.swift b/Adyen/UI/Dimensions.swift index 17accdfdcf..b2795bd10d 100644 --- a/Adyen/UI/Dimensions.swift +++ b/Adyen/UI/Dimensions.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Form/FormItemViewBuilder.swift b/Adyen/UI/Form/FormItemViewBuilder.swift index 1c7cdfb532..1b637eea0a 100644 --- a/Adyen/UI/Form/FormItemViewBuilder.swift +++ b/Adyen/UI/Form/FormItemViewBuilder.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Form/FormView.swift b/Adyen/UI/Form/FormView.swift index c3a8e1d0fc..8faeb82804 100644 --- a/Adyen/UI/Form/FormView.swift +++ b/Adyen/UI/Form/FormView.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Form/FormViewController+ViewProtocol.swift b/Adyen/UI/Form/FormViewController+ViewProtocol.swift index 04421acdb5..c3d7b135b4 100644 --- a/Adyen/UI/Form/FormViewController+ViewProtocol.swift +++ b/Adyen/UI/Form/FormViewController+ViewProtocol.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Form/FormViewController.swift b/Adyen/UI/Form/FormViewController.swift index ad3e725d72..e7feed63d7 100644 --- a/Adyen/UI/Form/FormViewController.swift +++ b/Adyen/UI/Form/FormViewController.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Form/FormViewItemManager.swift b/Adyen/UI/Form/FormViewItemManager.swift index 9bd2e0ed12..0a5d3bcd22 100644 --- a/Adyen/UI/Form/FormViewItemManager.swift +++ b/Adyen/UI/Form/FormViewItemManager.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Form/Items/Address/AddressViewModel.swift b/Adyen/UI/Form/Items/Address/AddressViewModel.swift index 58e9258599..b901a2efea 100644 --- a/Adyen/UI/Form/Items/Address/AddressViewModel.swift +++ b/Adyen/UI/Form/Items/Address/AddressViewModel.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Form/Items/Address/DefaultAddressViewModelBuilder.swift b/Adyen/UI/Form/Items/Address/DefaultAddressViewModelBuilder.swift index 01e27fdc24..197b795950 100644 --- a/Adyen/UI/Form/Items/Address/DefaultAddressViewModelBuilder.swift +++ b/Adyen/UI/Form/Items/Address/DefaultAddressViewModelBuilder.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Form/Items/Address/FormAddressItem+Configuration.swift b/Adyen/UI/Form/Items/Address/FormAddressItem+Configuration.swift index 40e15562e3..3b4657dfee 100644 --- a/Adyen/UI/Form/Items/Address/FormAddressItem+Configuration.swift +++ b/Adyen/UI/Form/Items/Address/FormAddressItem+Configuration.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Form/Items/Address/FormAddressItem.swift b/Adyen/UI/Form/Items/Address/FormAddressItem.swift index 14d28c10cc..7c20bbd79d 100644 --- a/Adyen/UI/Form/Items/Address/FormAddressItem.swift +++ b/Adyen/UI/Form/Items/Address/FormAddressItem.swift @@ -14,7 +14,7 @@ public final class FormAddressItem: FormValueItem, private var context: AddressViewModelBuilderContext { didSet { - reloadFields() + self.reloadFields() } } diff --git a/Adyen/UI/Form/Items/Address/FormPostalCodeItem.swift b/Adyen/UI/Form/Items/Address/FormPostalCodeItem.swift index 00ac4b8eec..5d81d24d76 100644 --- a/Adyen/UI/Form/Items/Address/FormPostalCodeItem.swift +++ b/Adyen/UI/Form/Items/Address/FormPostalCodeItem.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Form/Items/Address/FormRegionPickerItem.swift b/Adyen/UI/Form/Items/Address/FormRegionPickerItem.swift index 9331cdeff7..5658481187 100644 --- a/Adyen/UI/Form/Items/Address/FormRegionPickerItem.swift +++ b/Adyen/UI/Form/Items/Address/FormRegionPickerItem.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Form/Items/Address/Picker/FormAddressPickerItem.swift b/Adyen/UI/Form/Items/Address/Picker/FormAddressPickerItem.swift index 6ca33b95a6..f062e9a2cb 100644 --- a/Adyen/UI/Form/Items/Address/Picker/FormAddressPickerItem.swift +++ b/Adyen/UI/Form/Items/Address/Picker/FormAddressPickerItem.swift @@ -139,6 +139,7 @@ private extension FormAddressPickerItem { extension FormAddressPickerItem { + // swiftlint:disable function_parameter_count private func didSelectAddressPicker( for addressType: FormAddressPickerItem.AddressType, with prefillAddress: PostalAddress?, @@ -149,6 +150,7 @@ extension FormAddressPickerItem { style: FormComponentStyle, completion: @escaping (PostalAddress?) -> Void ) { + // swiftlint:enable function_parameter_count let securedViewController = SecuredViewController( child: addressPickerViewController( for: addressType, @@ -168,6 +170,7 @@ extension FormAddressPickerItem { presenter.presentViewController(securedViewController, animated: true) } + // swiftlint:disable function_parameter_count private func addressPickerViewController( for addressType: FormAddressPickerItem.AddressType, with prefillAddress: PostalAddress?, @@ -177,6 +180,7 @@ extension FormAddressPickerItem { style: FormComponentStyle, completionHandler: @escaping (PostalAddress?) -> Void ) -> UIViewController { + // swiftlint:enable function_parameter_count guard let lookupProvider else { diff --git a/Adyen/UI/Form/Items/Address/Picker/FormAddressPickerItemView.swift b/Adyen/UI/Form/Items/Address/Picker/FormAddressPickerItemView.swift index 08e3bd1857..c4bc544857 100644 --- a/Adyen/UI/Form/Items/Address/Picker/FormAddressPickerItemView.swift +++ b/Adyen/UI/Form/Items/Address/Picker/FormAddressPickerItemView.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Form/Items/Basic Items/FormAttributedLabelItem.swift b/Adyen/UI/Form/Items/Basic Items/FormAttributedLabelItem.swift index 1c73e6e9e3..ce0c408bc9 100644 --- a/Adyen/UI/Form/Items/Basic Items/FormAttributedLabelItem.swift +++ b/Adyen/UI/Form/Items/Basic Items/FormAttributedLabelItem.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Form/Items/Basic Items/FormContainerItem.swift b/Adyen/UI/Form/Items/Basic Items/FormContainerItem.swift index 2d9f340220..b55edc61ba 100644 --- a/Adyen/UI/Form/Items/Basic Items/FormContainerItem.swift +++ b/Adyen/UI/Form/Items/Basic Items/FormContainerItem.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Form/Items/Basic Items/FormLabelItem.swift b/Adyen/UI/Form/Items/Basic Items/FormLabelItem.swift index 98d58fbd83..c5516352d0 100644 --- a/Adyen/UI/Form/Items/Basic Items/FormLabelItem.swift +++ b/Adyen/UI/Form/Items/Basic Items/FormLabelItem.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Form/Items/Basic Items/FormVerticalStackItemView.swift b/Adyen/UI/Form/Items/Basic Items/FormVerticalStackItemView.swift index ea0c668764..63159f13ac 100644 --- a/Adyen/UI/Form/Items/Basic Items/FormVerticalStackItemView.swift +++ b/Adyen/UI/Form/Items/Basic Items/FormVerticalStackItemView.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Form/Items/Button/FormButtonItem.swift b/Adyen/UI/Form/Items/Button/FormButtonItem.swift index 3356db3f92..380ae82b62 100644 --- a/Adyen/UI/Form/Items/Button/FormButtonItem.swift +++ b/Adyen/UI/Form/Items/Button/FormButtonItem.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Form/Items/Button/FormButtonItemStyle.swift b/Adyen/UI/Form/Items/Button/FormButtonItemStyle.swift index 73afe74daa..c6f2285482 100644 --- a/Adyen/UI/Form/Items/Button/FormButtonItemStyle.swift +++ b/Adyen/UI/Form/Items/Button/FormButtonItemStyle.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Form/Items/Button/FormButtonItemView.swift b/Adyen/UI/Form/Items/Button/FormButtonItemView.swift index 8fe3549c22..0d42c9efb8 100644 --- a/Adyen/UI/Form/Items/Button/FormButtonItemView.swift +++ b/Adyen/UI/Form/Items/Button/FormButtonItemView.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Form/Items/Button/SearchButton/FormSearchButtonItem.swift b/Adyen/UI/Form/Items/Button/SearchButton/FormSearchButtonItem.swift index ef89f2dd79..a6b51da44d 100644 --- a/Adyen/UI/Form/Items/Button/SearchButton/FormSearchButtonItem.swift +++ b/Adyen/UI/Form/Items/Button/SearchButton/FormSearchButtonItem.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Form/Items/Button/SearchButton/FormSearchButtonItemView.swift b/Adyen/UI/Form/Items/Button/SearchButton/FormSearchButtonItemView.swift index 77f6d2fccb..678c45003b 100644 --- a/Adyen/UI/Form/Items/Button/SearchButton/FormSearchButtonItemView.swift +++ b/Adyen/UI/Form/Items/Button/SearchButton/FormSearchButtonItemView.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Form/Items/Error/FormErrorItem.swift b/Adyen/UI/Form/Items/Error/FormErrorItem.swift index ac9b29c50c..3e6312076e 100644 --- a/Adyen/UI/Form/Items/Error/FormErrorItem.swift +++ b/Adyen/UI/Form/Items/Error/FormErrorItem.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Form/Items/Error/FormErrorItemStyle.swift b/Adyen/UI/Form/Items/Error/FormErrorItemStyle.swift index 6f8525b3e5..1adbe95c0d 100644 --- a/Adyen/UI/Form/Items/Error/FormErrorItemStyle.swift +++ b/Adyen/UI/Form/Items/Error/FormErrorItemStyle.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Form/Items/Error/FormErrorItemView.swift b/Adyen/UI/Form/Items/Error/FormErrorItemView.swift index 90da2d69c2..d318bd8f90 100644 --- a/Adyen/UI/Form/Items/Error/FormErrorItemView.swift +++ b/Adyen/UI/Form/Items/Error/FormErrorItemView.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Form/Items/FormImageItem/FormImageItem.swift b/Adyen/UI/Form/Items/FormImageItem/FormImageItem.swift index df7aa4e027..62c94d2b57 100644 --- a/Adyen/UI/Form/Items/FormImageItem/FormImageItem.swift +++ b/Adyen/UI/Form/Items/FormImageItem/FormImageItem.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Form/Items/FormItem.swift b/Adyen/UI/Form/Items/FormItem.swift index 11c000277a..663968afc0 100644 --- a/Adyen/UI/Form/Items/FormItem.swift +++ b/Adyen/UI/Form/Items/FormItem.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Form/Items/FormItemView.swift b/Adyen/UI/Form/Items/FormItemView.swift index fb09023bca..9eb279c568 100644 --- a/Adyen/UI/Form/Items/FormItemView.swift +++ b/Adyen/UI/Form/Items/FormItemView.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Form/Items/Phone Number/FormPhoneNumberItem.swift b/Adyen/UI/Form/Items/Phone Number/FormPhoneNumberItem.swift index 04296efb99..a4592c3cde 100644 --- a/Adyen/UI/Form/Items/Phone Number/FormPhoneNumberItem.swift +++ b/Adyen/UI/Form/Items/Phone Number/FormPhoneNumberItem.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Form/Items/Phone Number/FormPhoneNumberItemView.swift b/Adyen/UI/Form/Items/Phone Number/FormPhoneNumberItemView.swift index a438e48342..e11e1d0033 100644 --- a/Adyen/UI/Form/Items/Phone Number/FormPhoneNumberItemView.swift +++ b/Adyen/UI/Form/Items/Phone Number/FormPhoneNumberItemView.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Form/Items/Segmented Control/FormSegmentedControlItem.swift b/Adyen/UI/Form/Items/Segmented Control/FormSegmentedControlItem.swift index 73a2e9667a..0041cb772d 100644 --- a/Adyen/UI/Form/Items/Segmented Control/FormSegmentedControlItem.swift +++ b/Adyen/UI/Form/Items/Segmented Control/FormSegmentedControlItem.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Form/Items/Separator/FormSeparatorItem.swift b/Adyen/UI/Form/Items/Separator/FormSeparatorItem.swift index 16fbd876b4..0db036f469 100644 --- a/Adyen/UI/Form/Items/Separator/FormSeparatorItem.swift +++ b/Adyen/UI/Form/Items/Separator/FormSeparatorItem.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Form/Items/Separator/FormSeparatorItemView.swift b/Adyen/UI/Form/Items/Separator/FormSeparatorItemView.swift index f468109687..0324c030b4 100644 --- a/Adyen/UI/Form/Items/Separator/FormSeparatorItemView.swift +++ b/Adyen/UI/Form/Items/Separator/FormSeparatorItemView.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Form/Items/Spacer/FormSpacerItem.swift b/Adyen/UI/Form/Items/Spacer/FormSpacerItem.swift index c999a465b8..64a515ba9b 100644 --- a/Adyen/UI/Form/Items/Spacer/FormSpacerItem.swift +++ b/Adyen/UI/Form/Items/Spacer/FormSpacerItem.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Form/Items/Spacer/FormSpacerItemView.swift b/Adyen/UI/Form/Items/Spacer/FormSpacerItemView.swift index 290a5bad29..b97e8ae0af 100644 --- a/Adyen/UI/Form/Items/Spacer/FormSpacerItemView.swift +++ b/Adyen/UI/Form/Items/Spacer/FormSpacerItemView.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Form/Items/Split/FormSplitItem.swift b/Adyen/UI/Form/Items/Split/FormSplitItem.swift index 06107d9dc7..06f9ceeb4a 100644 --- a/Adyen/UI/Form/Items/Split/FormSplitItem.swift +++ b/Adyen/UI/Form/Items/Split/FormSplitItem.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Form/Items/Split/FormSplitItemView.swift b/Adyen/UI/Form/Items/Split/FormSplitItemView.swift index ef33a0db0a..65615af0ff 100644 --- a/Adyen/UI/Form/Items/Split/FormSplitItemView.swift +++ b/Adyen/UI/Form/Items/Split/FormSplitItemView.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Form/Items/Text/FormTextInputItem.swift b/Adyen/UI/Form/Items/Text/FormTextInputItem.swift index 358d1be183..1281338d29 100644 --- a/Adyen/UI/Form/Items/Text/FormTextInputItem.swift +++ b/Adyen/UI/Form/Items/Text/FormTextInputItem.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Form/Items/Text/FormTextInputItemView.swift b/Adyen/UI/Form/Items/Text/FormTextInputItemView.swift index 32fc65f61f..c1a101fd04 100644 --- a/Adyen/UI/Form/Items/Text/FormTextInputItemView.swift +++ b/Adyen/UI/Form/Items/Text/FormTextInputItemView.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Form/Items/Text/FormTextItem.swift b/Adyen/UI/Form/Items/Text/FormTextItem.swift index 2b21ba92df..ffca4b1ffe 100644 --- a/Adyen/UI/Form/Items/Text/FormTextItem.swift +++ b/Adyen/UI/Form/Items/Text/FormTextItem.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Form/Items/Text/FormTextItemStyle.swift b/Adyen/UI/Form/Items/Text/FormTextItemStyle.swift index 08ee4b74eb..c09c5f6d74 100644 --- a/Adyen/UI/Form/Items/Text/FormTextItemStyle.swift +++ b/Adyen/UI/Form/Items/Text/FormTextItemStyle.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Form/Items/Text/FormTextItemView.swift b/Adyen/UI/Form/Items/Text/FormTextItemView.swift index 751b4662e1..9a1823c8bd 100644 --- a/Adyen/UI/Form/Items/Text/FormTextItemView.swift +++ b/Adyen/UI/Form/Items/Text/FormTextItemView.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Form/Items/Text/TextField.swift b/Adyen/UI/Form/Items/Text/TextField.swift index 7c99fbadb3..13c6608e94 100644 --- a/Adyen/UI/Form/Items/Text/TextField.swift +++ b/Adyen/UI/Form/Items/Text/TextField.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Form/Items/Toggle/FormToggleItem.swift b/Adyen/UI/Form/Items/Toggle/FormToggleItem.swift index 310de03b42..21af001407 100644 --- a/Adyen/UI/Form/Items/Toggle/FormToggleItem.swift +++ b/Adyen/UI/Form/Items/Toggle/FormToggleItem.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Form/Items/Toggle/FormToggleItemStyle.swift b/Adyen/UI/Form/Items/Toggle/FormToggleItemStyle.swift index 28313dce28..a811ab6a55 100644 --- a/Adyen/UI/Form/Items/Toggle/FormToggleItemStyle.swift +++ b/Adyen/UI/Form/Items/Toggle/FormToggleItemStyle.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Form/Items/Toggle/FormToggleItemView.swift b/Adyen/UI/Form/Items/Toggle/FormToggleItemView.swift index 8c20ec6389..5166815f1b 100644 --- a/Adyen/UI/Form/Items/Toggle/FormToggleItemView.swift +++ b/Adyen/UI/Form/Items/Toggle/FormToggleItemView.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Form/Items/Value Pickers/Abstract/BaseFormPickerItem.swift b/Adyen/UI/Form/Items/Value Pickers/Abstract/BaseFormPickerItem.swift index cdf42a1529..ee8bfb9fde 100644 --- a/Adyen/UI/Form/Items/Value Pickers/Abstract/BaseFormPickerItem.swift +++ b/Adyen/UI/Form/Items/Value Pickers/Abstract/BaseFormPickerItem.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Form/Items/Value Pickers/Abstract/BaseFormPickerItemView.swift b/Adyen/UI/Form/Items/Value Pickers/Abstract/BaseFormPickerItemView.swift index 9b076d6ac8..26b930eec4 100644 --- a/Adyen/UI/Form/Items/Value Pickers/Abstract/BaseFormPickerItemView.swift +++ b/Adyen/UI/Form/Items/Value Pickers/Abstract/BaseFormPickerItemView.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Form/Items/Value Pickers/Abstract/BasePickerInputControl.swift b/Adyen/UI/Form/Items/Value Pickers/Abstract/BasePickerInputControl.swift index 3291096083..3eb7f323eb 100644 --- a/Adyen/UI/Form/Items/Value Pickers/Abstract/BasePickerInputControl.swift +++ b/Adyen/UI/Form/Items/Value Pickers/Abstract/BasePickerInputControl.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Form/Items/Value Pickers/Issuer List Picker/FormIssuerPickerItem.swift b/Adyen/UI/Form/Items/Value Pickers/Issuer List Picker/FormIssuerPickerItem.swift index b79c2d4a08..3eefd5d9a9 100644 --- a/Adyen/UI/Form/Items/Value Pickers/Issuer List Picker/FormIssuerPickerItem.swift +++ b/Adyen/UI/Form/Items/Value Pickers/Issuer List Picker/FormIssuerPickerItem.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Form/Items/Value Pickers/Issuer List Picker/FormIssuersPickerItemView.swift b/Adyen/UI/Form/Items/Value Pickers/Issuer List Picker/FormIssuersPickerItemView.swift index 8c4684289b..5e10307e64 100644 --- a/Adyen/UI/Form/Items/Value Pickers/Issuer List Picker/FormIssuersPickerItemView.swift +++ b/Adyen/UI/Form/Items/Value Pickers/Issuer List Picker/FormIssuersPickerItemView.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Form/Items/Value Pickers/Phone Extension Picker/FormPhoneExtensionPickerItem.swift b/Adyen/UI/Form/Items/Value Pickers/Phone Extension Picker/FormPhoneExtensionPickerItem.swift index 00209fd9fd..7429da917a 100644 --- a/Adyen/UI/Form/Items/Value Pickers/Phone Extension Picker/FormPhoneExtensionPickerItem.swift +++ b/Adyen/UI/Form/Items/Value Pickers/Phone Extension Picker/FormPhoneExtensionPickerItem.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Form/Items/Value Pickers/Phone Extension Picker/FormPhoneExtensionPickerItemView.swift b/Adyen/UI/Form/Items/Value Pickers/Phone Extension Picker/FormPhoneExtensionPickerItemView.swift index 336e11795b..387a68caf4 100644 --- a/Adyen/UI/Form/Items/Value Pickers/Phone Extension Picker/FormPhoneExtensionPickerItemView.swift +++ b/Adyen/UI/Form/Items/Value Pickers/Phone Extension Picker/FormPhoneExtensionPickerItemView.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Form/Items/Value Pickers/Phone Extension Picker/PhoneExtensionInputControl.swift b/Adyen/UI/Form/Items/Value Pickers/Phone Extension Picker/PhoneExtensionInputControl.swift index 9fea722e8c..94107f30a9 100644 --- a/Adyen/UI/Form/Items/Value Pickers/Phone Extension Picker/PhoneExtensionInputControl.swift +++ b/Adyen/UI/Form/Items/Value Pickers/Phone Extension Picker/PhoneExtensionInputControl.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Form/Items/Value/FormValueItem.swift b/Adyen/UI/Form/Items/Value/FormValueItem.swift index f56f270836..3f6b6cced8 100644 --- a/Adyen/UI/Form/Items/Value/FormValueItem.swift +++ b/Adyen/UI/Form/Items/Value/FormValueItem.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Form/Items/Value/FormValueItemView.swift b/Adyen/UI/Form/Items/Value/FormValueItemView.swift index 8ec620b649..4e5a696e18 100644 --- a/Adyen/UI/Form/Items/Value/FormValueItemView.swift +++ b/Adyen/UI/Form/Items/Value/FormValueItemView.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Form/Items/Value/Picker/FormPickerItem.swift b/Adyen/UI/Form/Items/Value/Picker/FormPickerItem.swift index 7d797af34b..d66f914c7f 100644 --- a/Adyen/UI/Form/Items/Value/Picker/FormPickerItem.swift +++ b/Adyen/UI/Form/Items/Value/Picker/FormPickerItem.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Form/Items/Value/Picker/FormPickerItemView.swift b/Adyen/UI/Form/Items/Value/Picker/FormPickerItemView.swift index ae9af69e72..9eb21dde6e 100644 --- a/Adyen/UI/Form/Items/Value/Picker/FormPickerItemView.swift +++ b/Adyen/UI/Form/Items/Value/Picker/FormPickerItemView.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Form/Items/Value/Picker/FormPickerSearchViewController+EmptyView+Style.swift b/Adyen/UI/Form/Items/Value/Picker/FormPickerSearchViewController+EmptyView+Style.swift index b36e2e9372..7c0a966406 100644 --- a/Adyen/UI/Form/Items/Value/Picker/FormPickerSearchViewController+EmptyView+Style.swift +++ b/Adyen/UI/Form/Items/Value/Picker/FormPickerSearchViewController+EmptyView+Style.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Form/Items/Value/Picker/FormPickerSearchViewController+EmptyView.swift b/Adyen/UI/Form/Items/Value/Picker/FormPickerSearchViewController+EmptyView.swift index cdcbd6b6e6..cfde0bcf45 100644 --- a/Adyen/UI/Form/Items/Value/Picker/FormPickerSearchViewController+EmptyView.swift +++ b/Adyen/UI/Form/Items/Value/Picker/FormPickerSearchViewController+EmptyView.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Form/Items/Value/Picker/FormPickerSearchViewController+Style.swift b/Adyen/UI/Form/Items/Value/Picker/FormPickerSearchViewController+Style.swift index 709b04573a..9d9f253dfe 100644 --- a/Adyen/UI/Form/Items/Value/Picker/FormPickerSearchViewController+Style.swift +++ b/Adyen/UI/Form/Items/Value/Picker/FormPickerSearchViewController+Style.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Form/Items/Value/Picker/FormPickerSearchViewController.swift b/Adyen/UI/Form/Items/Value/Picker/FormPickerSearchViewController.swift index e4562989e4..3b61476cc7 100644 --- a/Adyen/UI/Form/Items/Value/Picker/FormPickerSearchViewController.swift +++ b/Adyen/UI/Form/Items/Value/Picker/FormPickerSearchViewController.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Form/Items/Value/Selectable/FormSelectableValueItem.swift b/Adyen/UI/Form/Items/Value/Selectable/FormSelectableValueItem.swift index 652492a350..da72601374 100644 --- a/Adyen/UI/Form/Items/Value/Selectable/FormSelectableValueItem.swift +++ b/Adyen/UI/Form/Items/Value/Selectable/FormSelectableValueItem.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Form/Items/Value/Selectable/FormSelectableValueItemView.swift b/Adyen/UI/Form/Items/Value/Selectable/FormSelectableValueItemView.swift index 708567d7b0..82c07c9ae4 100644 --- a/Adyen/UI/Form/Items/Value/Selectable/FormSelectableValueItemView.swift +++ b/Adyen/UI/Form/Items/Value/Selectable/FormSelectableValueItemView.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Form/Items/Value/Validatable/FormValidatableValueItem.swift b/Adyen/UI/Form/Items/Value/Validatable/FormValidatableValueItem.swift index 2d12e7044d..48eed1a6fb 100644 --- a/Adyen/UI/Form/Items/Value/Validatable/FormValidatableValueItem.swift +++ b/Adyen/UI/Form/Items/Value/Validatable/FormValidatableValueItem.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Form/Items/Value/Validatable/FormValidatableValueItemView.swift b/Adyen/UI/Form/Items/Value/Validatable/FormValidatableValueItemView.swift index 7360943ea2..1be03df5fb 100644 --- a/Adyen/UI/Form/Items/Value/Validatable/FormValidatableValueItemView.swift +++ b/Adyen/UI/Form/Items/Value/Validatable/FormValidatableValueItemView.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/List/CoreListDataSource.swift b/Adyen/UI/List/CoreListDataSource.swift index e40e0fc501..8751e52221 100644 --- a/Adyen/UI/List/CoreListDataSource.swift +++ b/Adyen/UI/List/CoreListDataSource.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/List/DiffableListDataSource.swift b/Adyen/UI/List/DiffableListDataSource.swift index addd9e52ed..d4aa697289 100644 --- a/Adyen/UI/List/DiffableListDataSource.swift +++ b/Adyen/UI/List/DiffableListDataSource.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/List/ListCell.swift b/Adyen/UI/List/ListCell.swift index dda432572d..32cfd727a5 100644 --- a/Adyen/UI/List/ListCell.swift +++ b/Adyen/UI/List/ListCell.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/List/ListFooterView.swift b/Adyen/UI/List/ListFooterView.swift index 4bbfd44712..4864cd327e 100644 --- a/Adyen/UI/List/ListFooterView.swift +++ b/Adyen/UI/List/ListFooterView.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/List/ListHeaderView.swift b/Adyen/UI/List/ListHeaderView.swift index be96d68ac7..065b6f871c 100644 --- a/Adyen/UI/List/ListHeaderView.swift +++ b/Adyen/UI/List/ListHeaderView.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/List/ListItem+Icon.swift b/Adyen/UI/List/ListItem+Icon.swift index aeb7ad002b..daf58f7503 100644 --- a/Adyen/UI/List/ListItem+Icon.swift +++ b/Adyen/UI/List/ListItem+Icon.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/List/ListItem.swift b/Adyen/UI/List/ListItem.swift index 3bb4f713c7..f8f10d4c50 100644 --- a/Adyen/UI/List/ListItem.swift +++ b/Adyen/UI/List/ListItem.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/List/ListItemStyle.swift b/Adyen/UI/List/ListItemStyle.swift index e6287cee70..f39e6a121f 100644 --- a/Adyen/UI/List/ListItemStyle.swift +++ b/Adyen/UI/List/ListItemStyle.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/List/ListItemView.swift b/Adyen/UI/List/ListItemView.swift index 531445aa88..6975ff107d 100644 --- a/Adyen/UI/List/ListItemView.swift +++ b/Adyen/UI/List/ListItemView.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/List/ListSection.swift b/Adyen/UI/List/ListSection.swift index 3e0485a732..8b77e45d33 100644 --- a/Adyen/UI/List/ListSection.swift +++ b/Adyen/UI/List/ListSection.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/List/ListSectionFooterStyle.swift b/Adyen/UI/List/ListSectionFooterStyle.swift index f2b820c792..3147ddde84 100644 --- a/Adyen/UI/List/ListSectionFooterStyle.swift +++ b/Adyen/UI/List/ListSectionFooterStyle.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/List/ListSectionHeaderStyle.swift b/Adyen/UI/List/ListSectionHeaderStyle.swift index 99ed688ddd..9d35e0af61 100644 --- a/Adyen/UI/List/ListSectionHeaderStyle.swift +++ b/Adyen/UI/List/ListSectionHeaderStyle.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/List/ListViewController.swift b/Adyen/UI/List/ListViewController.swift index 8b19c707e2..7784ee572a 100644 --- a/Adyen/UI/List/ListViewController.swift +++ b/Adyen/UI/List/ListViewController.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Styles/ApplePayStyle.swift b/Adyen/UI/Styles/ApplePayStyle.swift index c945ad8bf5..fe34d066da 100644 --- a/Adyen/UI/Styles/ApplePayStyle.swift +++ b/Adyen/UI/Styles/ApplePayStyle.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Styles/ButtonStyle.swift b/Adyen/UI/Styles/ButtonStyle.swift index 63f0fff6ea..7f360d382f 100644 --- a/Adyen/UI/Styles/ButtonStyle.swift +++ b/Adyen/UI/Styles/ButtonStyle.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Styles/CoreColors.swift b/Adyen/UI/Styles/CoreColors.swift index 99f44cc227..f7ef004586 100644 --- a/Adyen/UI/Styles/CoreColors.swift +++ b/Adyen/UI/Styles/CoreColors.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Styles/CoreFonts.swift b/Adyen/UI/Styles/CoreFonts.swift index d6f4117e9d..0ee9ae9059 100644 --- a/Adyen/UI/Styles/CoreFonts.swift +++ b/Adyen/UI/Styles/CoreFonts.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Styles/CornerRadiusStyle.swift b/Adyen/UI/Styles/CornerRadiusStyle.swift index e50e29d6a8..e9f727203b 100644 --- a/Adyen/UI/Styles/CornerRadiusStyle.swift +++ b/Adyen/UI/Styles/CornerRadiusStyle.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Styles/ImageStyle.swift b/Adyen/UI/Styles/ImageStyle.swift index 4989b0c6f7..591e000fd9 100644 --- a/Adyen/UI/Styles/ImageStyle.swift +++ b/Adyen/UI/Styles/ImageStyle.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Styles/ListComponentStyle.swift b/Adyen/UI/Styles/ListComponentStyle.swift index d02f038238..4b2a8f84a3 100644 --- a/Adyen/UI/Styles/ListComponentStyle.swift +++ b/Adyen/UI/Styles/ListComponentStyle.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Styles/NavigationStyle.swift b/Adyen/UI/Styles/NavigationStyle.swift index 8cce674030..753bb37e26 100644 --- a/Adyen/UI/Styles/NavigationStyle.swift +++ b/Adyen/UI/Styles/NavigationStyle.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Styles/ProgressViewStyle.swift b/Adyen/UI/Styles/ProgressViewStyle.swift index e4ff8fa4eb..ce35ff6d8f 100644 --- a/Adyen/UI/Styles/ProgressViewStyle.swift +++ b/Adyen/UI/Styles/ProgressViewStyle.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Styles/SegmentedControlStyle.swift b/Adyen/UI/Styles/SegmentedControlStyle.swift index f101c13ade..73191994f4 100644 --- a/Adyen/UI/Styles/SegmentedControlStyle.swift +++ b/Adyen/UI/Styles/SegmentedControlStyle.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Styles/TextStyle.swift b/Adyen/UI/Styles/TextStyle.swift index 859f012a4b..e31543a56d 100644 --- a/Adyen/UI/Styles/TextStyle.swift +++ b/Adyen/UI/Styles/TextStyle.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Styles/ViewStyle.swift b/Adyen/UI/Styles/ViewStyle.swift index c7cf803ab4..d06a20600b 100644 --- a/Adyen/UI/Styles/ViewStyle.swift +++ b/Adyen/UI/Styles/ViewStyle.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/View Controllers/ADYViewController.swift b/Adyen/UI/View Controllers/ADYViewController.swift index 6a5eeb3fd1..09e86f2f89 100644 --- a/Adyen/UI/View Controllers/ADYViewController.swift +++ b/Adyen/UI/View Controllers/ADYViewController.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/View Controllers/AddressLookup/AddressLookupProvider.swift b/Adyen/UI/View Controllers/AddressLookup/AddressLookupProvider.swift index 2babbe0586..91a7b16f6a 100644 --- a/Adyen/UI/View Controllers/AddressLookup/AddressLookupProvider.swift +++ b/Adyen/UI/View Controllers/AddressLookup/AddressLookupProvider.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/View Controllers/AddressLookup/AddressLookupViewController+ViewModel.swift b/Adyen/UI/View Controllers/AddressLookup/AddressLookupViewController+ViewModel.swift index 0054ae031f..fd3413f0ba 100644 --- a/Adyen/UI/View Controllers/AddressLookup/AddressLookupViewController+ViewModel.swift +++ b/Adyen/UI/View Controllers/AddressLookup/AddressLookupViewController+ViewModel.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/View Controllers/AddressLookup/AddressLookupViewController.swift b/Adyen/UI/View Controllers/AddressLookup/AddressLookupViewController.swift index e45bb1753d..9abb93346a 100644 --- a/Adyen/UI/View Controllers/AddressLookup/AddressLookupViewController.swift +++ b/Adyen/UI/View Controllers/AddressLookup/AddressLookupViewController.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/View Controllers/AddressLookup/Form/AddressInputFormViewController+ViewModel.swift b/Adyen/UI/View Controllers/AddressLookup/Form/AddressInputFormViewController+ViewModel.swift index 7b831d4a6e..8ca78a2861 100644 --- a/Adyen/UI/View Controllers/AddressLookup/Form/AddressInputFormViewController+ViewModel.swift +++ b/Adyen/UI/View Controllers/AddressLookup/Form/AddressInputFormViewController+ViewModel.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/View Controllers/AddressLookup/Form/AddressInputFormViewController.swift b/Adyen/UI/View Controllers/AddressLookup/Form/AddressInputFormViewController.swift index 11f0c7d783..71c5391122 100644 --- a/Adyen/UI/View Controllers/AddressLookup/Form/AddressInputFormViewController.swift +++ b/Adyen/UI/View Controllers/AddressLookup/Form/AddressInputFormViewController.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/View Controllers/AddressLookup/Search/AddressLookupSearchViewController+EmptyView.swift b/Adyen/UI/View Controllers/AddressLookup/Search/AddressLookupSearchViewController+EmptyView.swift index c3075af40b..f8b956ec2b 100644 --- a/Adyen/UI/View Controllers/AddressLookup/Search/AddressLookupSearchViewController+EmptyView.swift +++ b/Adyen/UI/View Controllers/AddressLookup/Search/AddressLookupSearchViewController+EmptyView.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/View Controllers/AddressLookup/Search/AddressLookupSearchViewController+ViewModel.swift b/Adyen/UI/View Controllers/AddressLookup/Search/AddressLookupSearchViewController+ViewModel.swift index 33d8d6aa89..1e015699b8 100644 --- a/Adyen/UI/View Controllers/AddressLookup/Search/AddressLookupSearchViewController+ViewModel.swift +++ b/Adyen/UI/View Controllers/AddressLookup/Search/AddressLookupSearchViewController+ViewModel.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/View Controllers/AddressLookup/Search/AddressLookupSearchViewController.swift b/Adyen/UI/View Controllers/AddressLookup/Search/AddressLookupSearchViewController.swift index c0e7c1141a..4f4b544883 100644 --- a/Adyen/UI/View Controllers/AddressLookup/Search/AddressLookupSearchViewController.swift +++ b/Adyen/UI/View Controllers/AddressLookup/Search/AddressLookupSearchViewController.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/View Controllers/SearchViewController/SearchViewController+InterfaceState.swift b/Adyen/UI/View Controllers/SearchViewController/SearchViewController+InterfaceState.swift index 6da324d3c5..a316f8641d 100644 --- a/Adyen/UI/View Controllers/SearchViewController/SearchViewController+InterfaceState.swift +++ b/Adyen/UI/View Controllers/SearchViewController/SearchViewController+InterfaceState.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/View Controllers/SearchViewController/SearchViewController+ViewModel.swift b/Adyen/UI/View Controllers/SearchViewController/SearchViewController+ViewModel.swift index a3b2f465f1..451d435fa6 100644 --- a/Adyen/UI/View Controllers/SearchViewController/SearchViewController+ViewModel.swift +++ b/Adyen/UI/View Controllers/SearchViewController/SearchViewController+ViewModel.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/View Controllers/SecuredViewController.swift b/Adyen/UI/View Controllers/SecuredViewController.swift index d9a1c631fd..ad318f2ab5 100644 --- a/Adyen/UI/View Controllers/SecuredViewController.swift +++ b/Adyen/UI/View Controllers/SecuredViewController.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/View Controllers/ViewControllerDelegate.swift b/Adyen/UI/View Controllers/ViewControllerDelegate.swift index 6f12e81757..9a95c2bd97 100644 --- a/Adyen/UI/View Controllers/ViewControllerDelegate.swift +++ b/Adyen/UI/View Controllers/ViewControllerDelegate.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Views/ContainerView.swift b/Adyen/UI/Views/ContainerView.swift index 732cce833b..68c4c8aebc 100644 --- a/Adyen/UI/Views/ContainerView.swift +++ b/Adyen/UI/Views/ContainerView.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Views/CopyLabelView.swift b/Adyen/UI/Views/CopyLabelView.swift index 9f38960ee5..77195a62ef 100644 --- a/Adyen/UI/Views/CopyLabelView.swift +++ b/Adyen/UI/Views/CopyLabelView.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Views/EmptyStateView.swift b/Adyen/UI/Views/EmptyStateView.swift index c2f244ffed..2674b5271a 100644 --- a/Adyen/UI/Views/EmptyStateView.swift +++ b/Adyen/UI/Views/EmptyStateView.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Views/LinkTextView.swift b/Adyen/UI/Views/LinkTextView.swift index 83774c9b3e..867655860a 100644 --- a/Adyen/UI/Views/LinkTextView.swift +++ b/Adyen/UI/Views/LinkTextView.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Views/LoadingView.swift b/Adyen/UI/Views/LoadingView.swift index 1a3a7f33e4..eb4fd4804f 100644 --- a/Adyen/UI/Views/LoadingView.swift +++ b/Adyen/UI/Views/LoadingView.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Views/NetworkImageView.swift b/Adyen/UI/Views/NetworkImageView.swift index a9c0e9e1d9..d6ce814a68 100644 --- a/Adyen/UI/Views/NetworkImageView.swift +++ b/Adyen/UI/Views/NetworkImageView.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Views/SubmitButton.swift b/Adyen/UI/Views/SubmitButton.swift index 7dc6aab89b..379f1baa66 100644 --- a/Adyen/UI/Views/SubmitButton.swift +++ b/Adyen/UI/Views/SubmitButton.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Views/UISearchBar+Prominent.swift b/Adyen/UI/Views/UISearchBar+Prominent.swift index c696b8949f..bafb360109 100644 --- a/Adyen/UI/Views/UISearchBar+Prominent.swift +++ b/Adyen/UI/Views/UISearchBar+Prominent.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/UI/Views/UIView+Accessibility.swift b/Adyen/UI/Views/UIView+Accessibility.swift index ec448737e8..7347d06692 100644 --- a/Adyen/UI/Views/UIView+Accessibility.swift +++ b/Adyen/UI/Views/UIView+Accessibility.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Utilities/AdyenCoder.swift b/Adyen/Utilities/AdyenCoder.swift index f101e66900..9f86223483 100644 --- a/Adyen/Utilities/AdyenCoder.swift +++ b/Adyen/Utilities/AdyenCoder.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Utilities/Analytics.swift b/Adyen/Utilities/Analytics.swift index cfd147bff3..8f8d198af3 100644 --- a/Adyen/Utilities/Analytics.swift +++ b/Adyen/Utilities/Analytics.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Utilities/AppLauncher.swift b/Adyen/Utilities/AppLauncher.swift index ce5df11b92..e832fec758 100644 --- a/Adyen/Utilities/AppLauncher.swift +++ b/Adyen/Utilities/AppLauncher.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Utilities/BundleSPMExtension.swift b/Adyen/Utilities/BundleSPMExtension.swift index 880cac4e25..cc29ec1a47 100644 --- a/Adyen/Utilities/BundleSPMExtension.swift +++ b/Adyen/Utilities/BundleSPMExtension.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Utilities/Completion.swift b/Adyen/Utilities/Completion.swift index 121aa7bf90..2a7e83b1e7 100644 --- a/Adyen/Utilities/Completion.swift +++ b/Adyen/Utilities/Completion.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Utilities/Debugging/Assertion.swift b/Adyen/Utilities/Debugging/Assertion.swift index 82408bdaa7..65918f13ae 100644 --- a/Adyen/Utilities/Debugging/Assertion.swift +++ b/Adyen/Utilities/Debugging/Assertion.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Utilities/Debugging/Logger.swift b/Adyen/Utilities/Debugging/Logger.swift index c833acfa3a..2fcbe5a801 100644 --- a/Adyen/Utilities/Debugging/Logger.swift +++ b/Adyen/Utilities/Debugging/Logger.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Utilities/External/AllCountriesPhoneExtensions.swift b/Adyen/Utilities/External/AllCountriesPhoneExtensions.swift index a6275aa706..0790a551ab 100644 --- a/Adyen/Utilities/External/AllCountriesPhoneExtensions.swift +++ b/Adyen/Utilities/External/AllCountriesPhoneExtensions.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Utilities/External/AllRegions.swift b/Adyen/Utilities/External/AllRegions.swift index a21de658cd..6a91d67dc2 100644 --- a/Adyen/Utilities/External/AllRegions.swift +++ b/Adyen/Utilities/External/AllRegions.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Utilities/External/LocalizableRegionRepository.swift b/Adyen/Utilities/External/LocalizableRegionRepository.swift index 5284388c1a..b749ed6479 100644 --- a/Adyen/Utilities/External/LocalizableRegionRepository.swift +++ b/Adyen/Utilities/External/LocalizableRegionRepository.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Utilities/External/LogoURLProvider.swift b/Adyen/Utilities/External/LogoURLProvider.swift index 140e28e5b6..bc6fb22609 100644 --- a/Adyen/Utilities/External/LogoURLProvider.swift +++ b/Adyen/Utilities/External/LogoURLProvider.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Utilities/External/PhoneExtensionsRepository.swift b/Adyen/Utilities/External/PhoneExtensionsRepository.swift index ef2d248857..074462962f 100644 --- a/Adyen/Utilities/External/PhoneExtensionsRepository.swift +++ b/Adyen/Utilities/External/PhoneExtensionsRepository.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Utilities/IBANSpecification.swift b/Adyen/Utilities/IBANSpecification.swift index 7135f4fb56..3752909d81 100644 --- a/Adyen/Utilities/IBANSpecification.swift +++ b/Adyen/Utilities/IBANSpecification.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Utilities/KeyboardObserver.swift b/Adyen/Utilities/KeyboardObserver.swift index 6fbc9a5a27..408d6d618e 100644 --- a/Adyen/Utilities/KeyboardObserver.swift +++ b/Adyen/Utilities/KeyboardObserver.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Utilities/LazyOptional.swift b/Adyen/Utilities/LazyOptional.swift index 42483cc2c0..3da08bb344 100644 --- a/Adyen/Utilities/LazyOptional.swift +++ b/Adyen/Utilities/LazyOptional.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Utilities/Localization.swift b/Adyen/Utilities/Localization.swift index 3e57bdd917..4641d96b0d 100644 --- a/Adyen/Utilities/Localization.swift +++ b/Adyen/Utilities/Localization.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Utilities/LocalizationParameters.swift b/Adyen/Utilities/LocalizationParameters.swift index a251c2ef96..727923bd5a 100644 --- a/Adyen/Utilities/LocalizationParameters.swift +++ b/Adyen/Utilities/LocalizationParameters.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Utilities/Non SPM Bundle Extension/CoreBundleExtension.swift b/Adyen/Utilities/Non SPM Bundle Extension/CoreBundleExtension.swift index 40688d80ba..ee374c20d7 100644 --- a/Adyen/Utilities/Non SPM Bundle Extension/CoreBundleExtension.swift +++ b/Adyen/Utilities/Non SPM Bundle Extension/CoreBundleExtension.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Utilities/Observable/AdyenObservable.swift b/Adyen/Utilities/Observable/AdyenObservable.swift index cb56003df0..75126d34c8 100644 --- a/Adyen/Utilities/Observable/AdyenObservable.swift +++ b/Adyen/Utilities/Observable/AdyenObservable.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Utilities/Observable/AdyenObserver.swift b/Adyen/Utilities/Observable/AdyenObserver.swift index 5705fd17ef..adc18c1a48 100644 --- a/Adyen/Utilities/Observable/AdyenObserver.swift +++ b/Adyen/Utilities/Observable/AdyenObserver.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Utilities/Observable/EventPublisher.swift b/Adyen/Utilities/Observable/EventPublisher.swift index a4b16b9135..d049a062fe 100644 --- a/Adyen/Utilities/Observable/EventPublisher.swift +++ b/Adyen/Utilities/Observable/EventPublisher.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Utilities/Observable/Observation.swift b/Adyen/Utilities/Observable/Observation.swift index 1bf3655a42..122fb16b02 100644 --- a/Adyen/Utilities/Observable/Observation.swift +++ b/Adyen/Utilities/Observable/Observation.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Utilities/Observable/ObservationManager.swift b/Adyen/Utilities/Observable/ObservationManager.swift index 61ba0665d0..9136471e47 100644 --- a/Adyen/Utilities/Observable/ObservationManager.swift +++ b/Adyen/Utilities/Observable/ObservationManager.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Utilities/PublicKeyProvider/PublicKeyConsumer.swift b/Adyen/Utilities/PublicKeyProvider/PublicKeyConsumer.swift index 533f4af9a0..8b7f24db33 100644 --- a/Adyen/Utilities/PublicKeyProvider/PublicKeyConsumer.swift +++ b/Adyen/Utilities/PublicKeyProvider/PublicKeyConsumer.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Utilities/PublicKeyProvider/PublicKeyProvider.swift b/Adyen/Utilities/PublicKeyProvider/PublicKeyProvider.swift index d75c2a430c..6a190433fd 100644 --- a/Adyen/Utilities/PublicKeyProvider/PublicKeyProvider.swift +++ b/Adyen/Utilities/PublicKeyProvider/PublicKeyProvider.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Utilities/SizeUtilities.swift b/Adyen/Utilities/SizeUtilities.swift index 3ec9ca857e..9602b1b669 100644 --- a/Adyen/Utilities/SizeUtilities.swift +++ b/Adyen/Utilities/SizeUtilities.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Utilities/Throttler.swift b/Adyen/Utilities/Throttler.swift index b0e645e288..cbdec3e1cc 100644 --- a/Adyen/Utilities/Throttler.swift +++ b/Adyen/Utilities/Throttler.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Utilities/ViewIdentifierBuilder.swift b/Adyen/Utilities/ViewIdentifierBuilder.swift index 51e403c6e1..41a1b6fce9 100644 --- a/Adyen/Utilities/ViewIdentifierBuilder.swift +++ b/Adyen/Utilities/ViewIdentifierBuilder.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Validators/BalanceChecker.swift b/Adyen/Validators/BalanceChecker.swift index b5b25aa8d8..c79c5a9104 100644 --- a/Adyen/Validators/BalanceChecker.swift +++ b/Adyen/Validators/BalanceChecker.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Validators/ClientKeyValidator.swift b/Adyen/Validators/ClientKeyValidator.swift index 209c2d4766..f569ac862b 100644 --- a/Adyen/Validators/ClientKeyValidator.swift +++ b/Adyen/Validators/ClientKeyValidator.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Validators/CountryCodeValidator.swift b/Adyen/Validators/CountryCodeValidator.swift index d7aed0096c..822bc2b752 100644 --- a/Adyen/Validators/CountryCodeValidator.swift +++ b/Adyen/Validators/CountryCodeValidator.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Validators/CurrencyCodeValidator.swift b/Adyen/Validators/CurrencyCodeValidator.swift index 32af9465ec..6ebada0725 100644 --- a/Adyen/Validators/CurrencyCodeValidator.swift +++ b/Adyen/Validators/CurrencyCodeValidator.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Validators/DateValidator.swift b/Adyen/Validators/DateValidator.swift index 2f40c2db8a..f710fa39e9 100644 --- a/Adyen/Validators/DateValidator.swift +++ b/Adyen/Validators/DateValidator.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Validators/EmailValidator.swift b/Adyen/Validators/EmailValidator.swift index 97b68ca72b..40d72a86b4 100644 --- a/Adyen/Validators/EmailValidator.swift +++ b/Adyen/Validators/EmailValidator.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Validators/IBANValidator.swift b/Adyen/Validators/IBANValidator.swift index d4705e73c0..4583b75425 100644 --- a/Adyen/Validators/IBANValidator.swift +++ b/Adyen/Validators/IBANValidator.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Validators/LengthValidator.swift b/Adyen/Validators/LengthValidator.swift index dc16f98f63..cbbf5ea04e 100644 --- a/Adyen/Validators/LengthValidator.swift +++ b/Adyen/Validators/LengthValidator.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Validators/NumericStringValidator.swift b/Adyen/Validators/NumericStringValidator.swift index 0d5aeab3f4..ef99d5edee 100644 --- a/Adyen/Validators/NumericStringValidator.swift +++ b/Adyen/Validators/NumericStringValidator.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Validators/PhoneNumberValidator.swift b/Adyen/Validators/PhoneNumberValidator.swift index 247e588e02..27b36a60ea 100644 --- a/Adyen/Validators/PhoneNumberValidator.swift +++ b/Adyen/Validators/PhoneNumberValidator.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Validators/RegularExpressionValidator.swift b/Adyen/Validators/RegularExpressionValidator.swift index 5b6b1589ee..2fd196fb02 100644 --- a/Adyen/Validators/RegularExpressionValidator.swift +++ b/Adyen/Validators/RegularExpressionValidator.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Adyen/Validators/Validator.swift b/Adyen/Validators/Validator.swift index 661ab286ae..64e4350821 100644 --- a/Adyen/Validators/Validator.swift +++ b/Adyen/Validators/Validator.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/Actions/Action.swift b/AdyenActions/Actions/Action.swift index 7f7346bd82..866317d2ff 100644 --- a/AdyenActions/Actions/Action.swift +++ b/AdyenActions/Actions/Action.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/Actions/AnyVoucherAction.swift b/AdyenActions/Actions/AnyVoucherAction.swift index d4089b6151..055762dcd6 100644 --- a/AdyenActions/Actions/AnyVoucherAction.swift +++ b/AdyenActions/Actions/AnyVoucherAction.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/Actions/AwaitAction.swift b/AdyenActions/Actions/AwaitAction.swift index b02c0df6f0..295aab9957 100644 --- a/AdyenActions/Actions/AwaitAction.swift +++ b/AdyenActions/Actions/AwaitAction.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/Actions/BoletoVoucherAction.swift b/AdyenActions/Actions/BoletoVoucherAction.swift index 75ac89c99a..1d5ec2682a 100644 --- a/AdyenActions/Actions/BoletoVoucherAction.swift +++ b/AdyenActions/Actions/BoletoVoucherAction.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/Actions/DocumentAction.swift b/AdyenActions/Actions/DocumentAction.swift index 5c71af54c6..bf65b92f84 100644 --- a/AdyenActions/Actions/DocumentAction.swift +++ b/AdyenActions/Actions/DocumentAction.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/Actions/DokuVoucherAction.swift b/AdyenActions/Actions/DokuVoucherAction.swift index ceebb2ff71..7e4f3eb17e 100644 --- a/AdyenActions/Actions/DokuVoucherAction.swift +++ b/AdyenActions/Actions/DokuVoucherAction.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/Actions/EContextATMVoucherAction.swift b/AdyenActions/Actions/EContextATMVoucherAction.swift index b012e0aade..a7f80335c8 100644 --- a/AdyenActions/Actions/EContextATMVoucherAction.swift +++ b/AdyenActions/Actions/EContextATMVoucherAction.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/Actions/EContextStoresVoucherAction.swift b/AdyenActions/Actions/EContextStoresVoucherAction.swift index 2edb1a1a3b..078d61ac7e 100644 --- a/AdyenActions/Actions/EContextStoresVoucherAction.swift +++ b/AdyenActions/Actions/EContextStoresVoucherAction.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/Actions/MultibancoVoucherAction.swift b/AdyenActions/Actions/MultibancoVoucherAction.swift index a15c10703b..95741a0480 100644 --- a/AdyenActions/Actions/MultibancoVoucherAction.swift +++ b/AdyenActions/Actions/MultibancoVoucherAction.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/Actions/OXXOVoucherAction.swift b/AdyenActions/Actions/OXXOVoucherAction.swift index 6642e0cc7d..1dd81715a9 100644 --- a/AdyenActions/Actions/OXXOVoucherAction.swift +++ b/AdyenActions/Actions/OXXOVoucherAction.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/Actions/QRCodeAction.swift b/AdyenActions/Actions/QRCodeAction.swift index 80511caa49..d31272724e 100644 --- a/AdyenActions/Actions/QRCodeAction.swift +++ b/AdyenActions/Actions/QRCodeAction.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/Actions/RedirectAction.swift b/AdyenActions/Actions/RedirectAction.swift index c2a91a9722..9693c56bfc 100644 --- a/AdyenActions/Actions/RedirectAction.swift +++ b/AdyenActions/Actions/RedirectAction.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/Actions/SDKAction.swift b/AdyenActions/Actions/SDKAction.swift index 888fa3bb4c..90c2f3bb77 100644 --- a/AdyenActions/Actions/SDKAction.swift +++ b/AdyenActions/Actions/SDKAction.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/Actions/ThreeDS2Action.swift b/AdyenActions/Actions/ThreeDS2Action.swift index 4e87faebcb..512da856c8 100644 --- a/AdyenActions/Actions/ThreeDS2Action.swift +++ b/AdyenActions/Actions/ThreeDS2Action.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/Actions/ThreeDS2ChallengeAction.swift b/AdyenActions/Actions/ThreeDS2ChallengeAction.swift index 1646503629..06c5d0ca29 100644 --- a/AdyenActions/Actions/ThreeDS2ChallengeAction.swift +++ b/AdyenActions/Actions/ThreeDS2ChallengeAction.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/Actions/ThreeDS2FingerprintAction.swift b/AdyenActions/Actions/ThreeDS2FingerprintAction.swift index 0470b348f9..de15b9d6ac 100644 --- a/AdyenActions/Actions/ThreeDS2FingerprintAction.swift +++ b/AdyenActions/Actions/ThreeDS2FingerprintAction.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/Actions/VoucherAction.swift b/AdyenActions/Actions/VoucherAction.swift index a54615f154..05e4bfafa0 100644 --- a/AdyenActions/Actions/VoucherAction.swift +++ b/AdyenActions/Actions/VoucherAction.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/Actions/WeChatPaySDKAction.swift b/AdyenActions/Actions/WeChatPaySDKAction.swift index 278e3ddcdb..712236ef5c 100644 --- a/AdyenActions/Actions/WeChatPaySDKAction.swift +++ b/AdyenActions/Actions/WeChatPaySDKAction.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/Actions/WeChatPaySDKData.swift b/AdyenActions/Actions/WeChatPaySDKData.swift index 5ca0a4294f..45b9a6db14 100644 --- a/AdyenActions/Actions/WeChatPaySDKData.swift +++ b/AdyenActions/Actions/WeChatPaySDKData.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/AdyenActionComponent.swift b/AdyenActions/AdyenActionComponent.swift index 33c37f421e..1e2dd55afd 100644 --- a/AdyenActions/AdyenActionComponent.swift +++ b/AdyenActions/AdyenActionComponent.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/Components/3DS2/3DS2 SDK Adapters/ADYServiceAdapter.swift b/AdyenActions/Components/3DS2/3DS2 SDK Adapters/ADYServiceAdapter.swift index d57da3d660..5bb2076793 100644 --- a/AdyenActions/Components/3DS2/3DS2 SDK Adapters/ADYServiceAdapter.swift +++ b/AdyenActions/Components/3DS2/3DS2 SDK Adapters/ADYServiceAdapter.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/Components/3DS2/3DS2 SDK Adapters/AnyADYTransaction.swift b/AdyenActions/Components/3DS2/3DS2 SDK Adapters/AnyADYTransaction.swift index 79de05d176..0699586457 100644 --- a/AdyenActions/Components/3DS2/3DS2 SDK Adapters/AnyADYTransaction.swift +++ b/AdyenActions/Components/3DS2/3DS2 SDK Adapters/AnyADYTransaction.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/Components/3DS2/3DS2 SDK Adapters/AnyAuthenticationRequestParameters.swift b/AdyenActions/Components/3DS2/3DS2 SDK Adapters/AnyAuthenticationRequestParameters.swift index 9afa4ac8bb..8be90a72c1 100644 --- a/AdyenActions/Components/3DS2/3DS2 SDK Adapters/AnyAuthenticationRequestParameters.swift +++ b/AdyenActions/Components/3DS2/3DS2 SDK Adapters/AnyAuthenticationRequestParameters.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/Components/3DS2/3DS2 SDK Adapters/AnyChallengeResult.swift b/AdyenActions/Components/3DS2/3DS2 SDK Adapters/AnyChallengeResult.swift index bfb952124e..54a5564d34 100644 --- a/AdyenActions/Components/3DS2/3DS2 SDK Adapters/AnyChallengeResult.swift +++ b/AdyenActions/Components/3DS2/3DS2 SDK Adapters/AnyChallengeResult.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/Components/3DS2/API/Submit3DS2FingerprintRequest.swift b/AdyenActions/Components/3DS2/API/Submit3DS2FingerprintRequest.swift index 63b915dc24..8a61b30900 100644 --- a/AdyenActions/Components/3DS2/API/Submit3DS2FingerprintRequest.swift +++ b/AdyenActions/Components/3DS2/API/Submit3DS2FingerprintRequest.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/Components/3DS2/API/Submit3DS2FingerprintResponse.swift b/AdyenActions/Components/3DS2/API/Submit3DS2FingerprintResponse.swift index 430f18570f..eabdd2857e 100644 --- a/AdyenActions/Components/3DS2/API/Submit3DS2FingerprintResponse.swift +++ b/AdyenActions/Components/3DS2/API/Submit3DS2FingerprintResponse.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/Components/3DS2/Action handlers/3DS2 Without Delegated Authentication/ThreeDS2CoreActionHandler.swift b/AdyenActions/Components/3DS2/Action handlers/3DS2 Without Delegated Authentication/ThreeDS2CoreActionHandler.swift index 59d2525d65..0977e538d8 100644 --- a/AdyenActions/Components/3DS2/Action handlers/3DS2 Without Delegated Authentication/ThreeDS2CoreActionHandler.swift +++ b/AdyenActions/Components/3DS2/Action handlers/3DS2 Without Delegated Authentication/ThreeDS2CoreActionHandler.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/Components/3DS2/Action handlers/3DS2+Delegated Authentication/ThreeDS2PlusDACoreActionHandler.swift b/AdyenActions/Components/3DS2/Action handlers/3DS2+Delegated Authentication/ThreeDS2PlusDACoreActionHandler.swift index 91d08b1b67..4bfb5cb03e 100644 --- a/AdyenActions/Components/3DS2/Action handlers/3DS2+Delegated Authentication/ThreeDS2PlusDACoreActionHandler.swift +++ b/AdyenActions/Components/3DS2/Action handlers/3DS2+Delegated Authentication/ThreeDS2PlusDACoreActionHandler.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/Components/3DS2/Action handlers/AnyThreeDS2ActionHandler.swift b/AdyenActions/Components/3DS2/Action handlers/AnyThreeDS2ActionHandler.swift index 68247dc5db..f5933c42e6 100644 --- a/AdyenActions/Components/3DS2/Action handlers/AnyThreeDS2ActionHandler.swift +++ b/AdyenActions/Components/3DS2/Action handlers/AnyThreeDS2ActionHandler.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/Components/3DS2/Action handlers/ThreeDS2ClassicActionHandler+Initializers.swift b/AdyenActions/Components/3DS2/Action handlers/ThreeDS2ClassicActionHandler+Initializers.swift index f5a9641b7c..7c9b2fa856 100644 --- a/AdyenActions/Components/3DS2/Action handlers/ThreeDS2ClassicActionHandler+Initializers.swift +++ b/AdyenActions/Components/3DS2/Action handlers/ThreeDS2ClassicActionHandler+Initializers.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/Components/3DS2/Action handlers/ThreeDS2ClassicActionHandler.swift b/AdyenActions/Components/3DS2/Action handlers/ThreeDS2ClassicActionHandler.swift index 697677866b..a29ccb2f92 100644 --- a/AdyenActions/Components/3DS2/Action handlers/ThreeDS2ClassicActionHandler.swift +++ b/AdyenActions/Components/3DS2/Action handlers/ThreeDS2ClassicActionHandler.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/Components/3DS2/Action handlers/ThreeDS2CompactActionHandler+Initializers.swift b/AdyenActions/Components/3DS2/Action handlers/ThreeDS2CompactActionHandler+Initializers.swift index a0bad68dc6..f3ef138a94 100644 --- a/AdyenActions/Components/3DS2/Action handlers/ThreeDS2CompactActionHandler+Initializers.swift +++ b/AdyenActions/Components/3DS2/Action handlers/ThreeDS2CompactActionHandler+Initializers.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/Components/3DS2/Action handlers/ThreeDS2CompactActionHandler.swift b/AdyenActions/Components/3DS2/Action handlers/ThreeDS2CompactActionHandler.swift index c904cc4615..5888a1d877 100644 --- a/AdyenActions/Components/3DS2/Action handlers/ThreeDS2CompactActionHandler.swift +++ b/AdyenActions/Components/3DS2/Action handlers/ThreeDS2CompactActionHandler.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/Components/3DS2/Action handlers/ThreeDSActionHandlerResult.swift b/AdyenActions/Components/3DS2/Action handlers/ThreeDSActionHandlerResult.swift index 9c6b1b9cc0..8fd1e7b023 100644 --- a/AdyenActions/Components/3DS2/Action handlers/ThreeDSActionHandlerResult.swift +++ b/AdyenActions/Components/3DS2/Action handlers/ThreeDSActionHandlerResult.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/Components/3DS2/Fingerprint Submitter/ThreeDS2FingerprintSubmitter.swift b/AdyenActions/Components/3DS2/Fingerprint Submitter/ThreeDS2FingerprintSubmitter.swift index c00bfca9d2..c318f22bf6 100644 --- a/AdyenActions/Components/3DS2/Fingerprint Submitter/ThreeDS2FingerprintSubmitter.swift +++ b/AdyenActions/Components/3DS2/Fingerprint Submitter/ThreeDS2FingerprintSubmitter.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/Components/3DS2/ThreeDS2Component.swift b/AdyenActions/Components/3DS2/ThreeDS2Component.swift index 574713702d..4f81d77606 100644 --- a/AdyenActions/Components/3DS2/ThreeDS2Component.swift +++ b/AdyenActions/Components/3DS2/ThreeDS2Component.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/Components/3DS2/ThreeDS2ComponentChallengeToken.swift b/AdyenActions/Components/3DS2/ThreeDS2ComponentChallengeToken.swift index 804e9020f3..c1776a573e 100644 --- a/AdyenActions/Components/3DS2/ThreeDS2ComponentChallengeToken.swift +++ b/AdyenActions/Components/3DS2/ThreeDS2ComponentChallengeToken.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/Components/3DS2/ThreeDS2ComponentFingerprint.swift b/AdyenActions/Components/3DS2/ThreeDS2ComponentFingerprint.swift index e0356d07ef..44bfde52ae 100644 --- a/AdyenActions/Components/3DS2/ThreeDS2ComponentFingerprint.swift +++ b/AdyenActions/Components/3DS2/ThreeDS2ComponentFingerprint.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/Components/3DS2/ThreeDS2ComponentFingerprintToken.swift b/AdyenActions/Components/3DS2/ThreeDS2ComponentFingerprintToken.swift index 262fbbdbd4..4dff14ae63 100644 --- a/AdyenActions/Components/3DS2/ThreeDS2ComponentFingerprintToken.swift +++ b/AdyenActions/Components/3DS2/ThreeDS2ComponentFingerprintToken.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/Components/3DS2/ThreeDS2Details.swift b/AdyenActions/Components/3DS2/ThreeDS2Details.swift index 7c9c1ff296..b38f4c4f0f 100644 --- a/AdyenActions/Components/3DS2/ThreeDS2Details.swift +++ b/AdyenActions/Components/3DS2/ThreeDS2Details.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/Components/3DS2/ThreeDSResult.swift b/AdyenActions/Components/3DS2/ThreeDSResult.swift index d506175aae..e88bfcb01a 100644 --- a/AdyenActions/Components/3DS2/ThreeDSResult.swift +++ b/AdyenActions/Components/3DS2/ThreeDSResult.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/Components/Await/AwaitActionDetails.swift b/AdyenActions/Components/Await/AwaitActionDetails.swift index e7c171aa07..29bce92034 100644 --- a/AdyenActions/Components/Await/AwaitActionDetails.swift +++ b/AdyenActions/Components/Await/AwaitActionDetails.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/Components/Await/AwaitComponent.swift b/AdyenActions/Components/Await/AwaitComponent.swift index 9c081c2319..f08f64606e 100644 --- a/AdyenActions/Components/Await/AwaitComponent.swift +++ b/AdyenActions/Components/Await/AwaitComponent.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/Components/Await/PollingComponent.swift b/AdyenActions/Components/Await/PollingComponent.swift index 2818ee8a30..a12ff53999 100644 --- a/AdyenActions/Components/Await/PollingComponent.swift +++ b/AdyenActions/Components/Await/PollingComponent.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/Components/Await/PollingHandlerProvider.swift b/AdyenActions/Components/Await/PollingHandlerProvider.swift index 67850394eb..483ef12aff 100644 --- a/AdyenActions/Components/Await/PollingHandlerProvider.swift +++ b/AdyenActions/Components/Await/PollingHandlerProvider.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/Components/Base/ActionNavigationBar.swift b/AdyenActions/Components/Base/ActionNavigationBar.swift index ba28a8bc04..fa72950269 100644 --- a/AdyenActions/Components/Base/ActionNavigationBar.swift +++ b/AdyenActions/Components/Base/ActionNavigationBar.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/Components/Base/AnyWeChatPaySDKActionComponent.swift b/AdyenActions/Components/Base/AnyWeChatPaySDKActionComponent.swift index 5a06b50680..c63218b94f 100644 --- a/AdyenActions/Components/Base/AnyWeChatPaySDKActionComponent.swift +++ b/AdyenActions/Components/Base/AnyWeChatPaySDKActionComponent.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/Components/Document/DocumentComponent.swift b/AdyenActions/Components/Document/DocumentComponent.swift index fb3d2cb140..9894fcfb2b 100644 --- a/AdyenActions/Components/Document/DocumentComponent.swift +++ b/AdyenActions/Components/Document/DocumentComponent.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/Components/Document/ShareableComponent.swift b/AdyenActions/Components/Document/ShareableComponent.swift index d8de11ebec..e7ceaa05ac 100644 --- a/AdyenActions/Components/Document/ShareableComponent.swift +++ b/AdyenActions/Components/Document/ShareableComponent.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/Components/QRCode/ExpirationTimer.swift b/AdyenActions/Components/QRCode/ExpirationTimer.swift index db75c2e279..38dcbc459a 100644 --- a/AdyenActions/Components/QRCode/ExpirationTimer.swift +++ b/AdyenActions/Components/QRCode/ExpirationTimer.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/Components/QRCode/QRCodeActionComponent.swift b/AdyenActions/Components/QRCode/QRCodeActionComponent.swift index 6022c79295..cf4867bada 100644 --- a/AdyenActions/Components/QRCode/QRCodeActionComponent.swift +++ b/AdyenActions/Components/QRCode/QRCodeActionComponent.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/Components/Redirect/BrowserComponent.swift b/AdyenActions/Components/Redirect/BrowserComponent.swift index dc75235b2c..de05d59203 100644 --- a/AdyenActions/Components/Redirect/BrowserComponent.swift +++ b/AdyenActions/Components/Redirect/BrowserComponent.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/Components/Redirect/NativeRedirectResultRequest.swift b/AdyenActions/Components/Redirect/NativeRedirectResultRequest.swift index e0332fb896..b99f9e99aa 100644 --- a/AdyenActions/Components/Redirect/NativeRedirectResultRequest.swift +++ b/AdyenActions/Components/Redirect/NativeRedirectResultRequest.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/Components/Redirect/OpenExternalAppDetector+DependencyKey.swift b/AdyenActions/Components/Redirect/OpenExternalAppDetector+DependencyKey.swift index c34fdc5ccc..a5f30374ff 100644 --- a/AdyenActions/Components/Redirect/OpenExternalAppDetector+DependencyKey.swift +++ b/AdyenActions/Components/Redirect/OpenExternalAppDetector+DependencyKey.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/Components/Redirect/OpenExternalAppDetector.swift b/AdyenActions/Components/Redirect/OpenExternalAppDetector.swift index cc19de17c9..ce752c10c8 100644 --- a/AdyenActions/Components/Redirect/OpenExternalAppDetector.swift +++ b/AdyenActions/Components/Redirect/OpenExternalAppDetector.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/Components/Redirect/RedirectComponent.swift b/AdyenActions/Components/Redirect/RedirectComponent.swift index e57acda09e..b0f46ff465 100644 --- a/AdyenActions/Components/Redirect/RedirectComponent.swift +++ b/AdyenActions/Components/Redirect/RedirectComponent.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/Components/Redirect/RedirectDetails.swift b/AdyenActions/Components/Redirect/RedirectDetails.swift index 96b8b64b56..94666d7b7e 100644 --- a/AdyenActions/Components/Redirect/RedirectDetails.swift +++ b/AdyenActions/Components/Redirect/RedirectDetails.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/Components/Redirect/RedirectListener.swift b/AdyenActions/Components/Redirect/RedirectListener.swift index 32a7ef13ca..250cce67a0 100644 --- a/AdyenActions/Components/Redirect/RedirectListener.swift +++ b/AdyenActions/Components/Redirect/RedirectListener.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/Components/Voucher/AppleWalletPassProvider.swift b/AdyenActions/Components/Voucher/AppleWalletPassProvider.swift index d959e27c13..f33892881a 100644 --- a/AdyenActions/Components/Voucher/AppleWalletPassProvider.swift +++ b/AdyenActions/Components/Voucher/AppleWalletPassProvider.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/Components/Voucher/VoucherComponent.swift b/AdyenActions/Components/Voucher/VoucherComponent.swift index 4625781649..7255d96fc1 100644 --- a/AdyenActions/Components/Voucher/VoucherComponent.swift +++ b/AdyenActions/Components/Voucher/VoucherComponent.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/Components/Voucher/VoucherComponentExtensions.swift b/AdyenActions/Components/Voucher/VoucherComponentExtensions.swift index 37e79992dd..bfca5fbb93 100644 --- a/AdyenActions/Components/Voucher/VoucherComponentExtensions.swift +++ b/AdyenActions/Components/Voucher/VoucherComponentExtensions.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/Components/Voucher/VoucherShareableViewProvider.swift b/AdyenActions/Components/Voucher/VoucherShareableViewProvider.swift index ac4cfee21f..01e311ce5c 100644 --- a/AdyenActions/Components/Voucher/VoucherShareableViewProvider.swift +++ b/AdyenActions/Components/Voucher/VoucherShareableViewProvider.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/Protocols/ActionHandlingComponent.swift b/AdyenActions/Protocols/ActionHandlingComponent.swift index ad10a47dcd..5abacff2aa 100644 --- a/AdyenActions/Protocols/ActionHandlingComponent.swift +++ b/AdyenActions/Protocols/ActionHandlingComponent.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/UI/UI Style/ActionComponentStyle.swift b/AdyenActions/UI/UI Style/ActionComponentStyle.swift index 70251aa296..15dc773929 100644 --- a/AdyenActions/UI/UI Style/ActionComponentStyle.swift +++ b/AdyenActions/UI/UI Style/ActionComponentStyle.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/UI/UI Style/AwaitComponentStyle.swift b/AdyenActions/UI/UI Style/AwaitComponentStyle.swift index da39f2ae3c..f315358040 100644 --- a/AdyenActions/UI/UI Style/AwaitComponentStyle.swift +++ b/AdyenActions/UI/UI Style/AwaitComponentStyle.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/UI/UI Style/DocumentComponentStyle.swift b/AdyenActions/UI/UI Style/DocumentComponentStyle.swift index 786fa1a1b5..5976682344 100644 --- a/AdyenActions/UI/UI Style/DocumentComponentStyle.swift +++ b/AdyenActions/UI/UI Style/DocumentComponentStyle.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/UI/UI Style/QRCodeComponentStyle.swift b/AdyenActions/UI/UI Style/QRCodeComponentStyle.swift index 9668a848d5..ed2adcde50 100644 --- a/AdyenActions/UI/UI Style/QRCodeComponentStyle.swift +++ b/AdyenActions/UI/UI Style/QRCodeComponentStyle.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/UI/UI Style/RedirectComponentStyle.swift b/AdyenActions/UI/UI Style/RedirectComponentStyle.swift index e2fe48a4f1..4cd0579873 100644 --- a/AdyenActions/UI/UI Style/RedirectComponentStyle.swift +++ b/AdyenActions/UI/UI Style/RedirectComponentStyle.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/UI/UI Style/VoucherComponentStyle.swift b/AdyenActions/UI/UI Style/VoucherComponentStyle.swift index 68ac16f2d8..484197ac0c 100644 --- a/AdyenActions/UI/UI Style/VoucherComponentStyle.swift +++ b/AdyenActions/UI/UI Style/VoucherComponentStyle.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/UI/View Controllers/Await/AwaitComponentViewModel.swift b/AdyenActions/UI/View Controllers/Await/AwaitComponentViewModel.swift index 35c390514d..a3564b981e 100644 --- a/AdyenActions/UI/View Controllers/Await/AwaitComponentViewModel.swift +++ b/AdyenActions/UI/View Controllers/Await/AwaitComponentViewModel.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/UI/View Controllers/Await/AwaitView.swift b/AdyenActions/UI/View Controllers/Await/AwaitView.swift index 189db461ce..2c6435b070 100644 --- a/AdyenActions/UI/View Controllers/Await/AwaitView.swift +++ b/AdyenActions/UI/View Controllers/Await/AwaitView.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/UI/View Controllers/Await/AwaitViewController.swift b/AdyenActions/UI/View Controllers/Await/AwaitViewController.swift index 389e7b2530..cad0e058b8 100644 --- a/AdyenActions/UI/View Controllers/Await/AwaitViewController.swift +++ b/AdyenActions/UI/View Controllers/Await/AwaitViewController.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/UI/View Controllers/Document/DocumentActionView.swift b/AdyenActions/UI/View Controllers/Document/DocumentActionView.swift index dcc8cc21b4..f07796cac0 100644 --- a/AdyenActions/UI/View Controllers/Document/DocumentActionView.swift +++ b/AdyenActions/UI/View Controllers/Document/DocumentActionView.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/UI/View Controllers/Document/DocumentActionViewModel.swift b/AdyenActions/UI/View Controllers/Document/DocumentActionViewModel.swift index bd4687f569..fa3c55fa42 100644 --- a/AdyenActions/UI/View Controllers/Document/DocumentActionViewModel.swift +++ b/AdyenActions/UI/View Controllers/Document/DocumentActionViewModel.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/UI/View Controllers/QR Code/QRCodeView.swift b/AdyenActions/UI/View Controllers/QR Code/QRCodeView.swift index b425909b79..eb2d171181 100644 --- a/AdyenActions/UI/View Controllers/QR Code/QRCodeView.swift +++ b/AdyenActions/UI/View Controllers/QR Code/QRCodeView.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/UI/View Controllers/QR Code/QRCodeViewController.swift b/AdyenActions/UI/View Controllers/QR Code/QRCodeViewController.swift index 3f1b76a64c..36e9062283 100644 --- a/AdyenActions/UI/View Controllers/QR Code/QRCodeViewController.swift +++ b/AdyenActions/UI/View Controllers/QR Code/QRCodeViewController.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/UI/View Controllers/QR Code/QRCodeViewModel.swift b/AdyenActions/UI/View Controllers/QR Code/QRCodeViewModel.swift index 5ca932b986..b2f733d9c2 100644 --- a/AdyenActions/UI/View Controllers/QR Code/QRCodeViewModel.swift +++ b/AdyenActions/UI/View Controllers/QR Code/QRCodeViewModel.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/UI/View Controllers/Voucher/ShareableVoucherView.swift b/AdyenActions/UI/View Controllers/Voucher/ShareableVoucherView.swift index e289b4cb7d..6aabcdb3bb 100644 --- a/AdyenActions/UI/View Controllers/Voucher/ShareableVoucherView.swift +++ b/AdyenActions/UI/View Controllers/Voucher/ShareableVoucherView.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/UI/View Controllers/Voucher/VoucherCardLayer.swift b/AdyenActions/UI/View Controllers/Voucher/VoucherCardLayer.swift index d4d94a09b6..5edce2a1f6 100644 --- a/AdyenActions/UI/View Controllers/Voucher/VoucherCardLayer.swift +++ b/AdyenActions/UI/View Controllers/Voucher/VoucherCardLayer.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/UI/View Controllers/Voucher/VoucherCardView.swift b/AdyenActions/UI/View Controllers/Voucher/VoucherCardView.swift index fee6766b16..e5358c5c59 100644 --- a/AdyenActions/UI/View Controllers/Voucher/VoucherCardView.swift +++ b/AdyenActions/UI/View Controllers/Voucher/VoucherCardView.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/UI/View Controllers/Voucher/VoucherSeparatorView.swift b/AdyenActions/UI/View Controllers/Voucher/VoucherSeparatorView.swift index 434bb88f1a..c018b3a6ab 100644 --- a/AdyenActions/UI/View Controllers/Voucher/VoucherSeparatorView.swift +++ b/AdyenActions/UI/View Controllers/Voucher/VoucherSeparatorView.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/UI/View Controllers/Voucher/VoucherView.swift b/AdyenActions/UI/View Controllers/Voucher/VoucherView.swift index 9cb1971997..f098f3fcd2 100644 --- a/AdyenActions/UI/View Controllers/Voucher/VoucherView.swift +++ b/AdyenActions/UI/View Controllers/Voucher/VoucherView.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/UI/View Controllers/Voucher/VoucherViewController.swift b/AdyenActions/UI/View Controllers/Voucher/VoucherViewController.swift index 4eecc4e411..fac514e7af 100644 --- a/AdyenActions/UI/View Controllers/Voucher/VoucherViewController.swift +++ b/AdyenActions/UI/View Controllers/Voucher/VoucherViewController.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/UI/View Controllers/Voucher/VoucherViewModel.swift b/AdyenActions/UI/View Controllers/Voucher/VoucherViewModel.swift index db9c5d86cf..4d4af7ddf7 100644 --- a/AdyenActions/UI/View Controllers/Voucher/VoucherViewModel.swift +++ b/AdyenActions/UI/View Controllers/Voucher/VoucherViewModel.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/Utilities/BundleSPMExtension.swift b/AdyenActions/Utilities/BundleSPMExtension.swift index 983fc80ca0..f258795cf2 100644 --- a/AdyenActions/Utilities/BundleSPMExtension.swift +++ b/AdyenActions/Utilities/BundleSPMExtension.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenActions/Utilities/Non SPM Bundle Extension/ActionsBundleExtension.swift b/AdyenActions/Utilities/Non SPM Bundle Extension/ActionsBundleExtension.swift index 0a2a6f83d8..31ed43976c 100644 --- a/AdyenActions/Utilities/Non SPM Bundle Extension/ActionsBundleExtension.swift +++ b/AdyenActions/Utilities/Non SPM Bundle Extension/ActionsBundleExtension.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenCard/Components/BCMC/BCMCComponent.swift b/AdyenCard/Components/BCMC/BCMCComponent.swift index 26141dbca0..32577a44a7 100644 --- a/AdyenCard/Components/BCMC/BCMCComponent.swift +++ b/AdyenCard/Components/BCMC/BCMCComponent.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenCard/Components/Card/CardComponent.swift b/AdyenCard/Components/Card/CardComponent.swift index 8ca87e963c..d16e10ff14 100644 --- a/AdyenCard/Components/Card/CardComponent.swift +++ b/AdyenCard/Components/Card/CardComponent.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenCard/Components/Card/CardComponentConfiguration.swift b/AdyenCard/Components/Card/CardComponentConfiguration.swift index 1e7ed3529a..2be54eea65 100644 --- a/AdyenCard/Components/Card/CardComponentConfiguration.swift +++ b/AdyenCard/Components/Card/CardComponentConfiguration.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenCard/Components/Card/CardComponentDelegate.swift b/AdyenCard/Components/Card/CardComponentDelegate.swift index 2e83323ecb..e0c9f56ce1 100644 --- a/AdyenCard/Components/Card/CardComponentDelegate.swift +++ b/AdyenCard/Components/Card/CardComponentDelegate.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenCard/Components/Card/CardComponentExtensions.swift b/AdyenCard/Components/Card/CardComponentExtensions.swift index 2e248e3483..94cc6ea9c6 100644 --- a/AdyenCard/Components/Card/CardComponentExtensions.swift +++ b/AdyenCard/Components/Card/CardComponentExtensions.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenCard/Components/Card/CardDetails.swift b/AdyenCard/Components/Card/CardDetails.swift index a7222d0c7d..9f61a199f6 100644 --- a/AdyenCard/Components/Card/CardDetails.swift +++ b/AdyenCard/Components/Card/CardDetails.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenCard/Components/Card/ThreeDS2SdkVersion.swift b/AdyenCard/Components/Card/ThreeDS2SdkVersion.swift index dad5ad88f6..0be385a0a2 100644 --- a/AdyenCard/Components/Card/ThreeDS2SdkVersion.swift +++ b/AdyenCard/Components/Card/ThreeDS2SdkVersion.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenCard/Components/GiftCardComponent/GiftCardComponent+Extensions.swift b/AdyenCard/Components/GiftCardComponent/GiftCardComponent+Extensions.swift index 3ccc54d76d..059bb7ecd3 100644 --- a/AdyenCard/Components/GiftCardComponent/GiftCardComponent+Extensions.swift +++ b/AdyenCard/Components/GiftCardComponent/GiftCardComponent+Extensions.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenCard/Components/GiftCardComponent/GiftCardComponent.swift b/AdyenCard/Components/GiftCardComponent/GiftCardComponent.swift index eea8637a39..aa233a21ee 100644 --- a/AdyenCard/Components/GiftCardComponent/GiftCardComponent.swift +++ b/AdyenCard/Components/GiftCardComponent/GiftCardComponent.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenCard/Components/GiftCardComponent/GiftCardConfirmationPaymentMethod.swift b/AdyenCard/Components/GiftCardComponent/GiftCardConfirmationPaymentMethod.swift index 3966240a79..42be20c45b 100644 --- a/AdyenCard/Components/GiftCardComponent/GiftCardConfirmationPaymentMethod.swift +++ b/AdyenCard/Components/GiftCardComponent/GiftCardConfirmationPaymentMethod.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenCard/Components/GiftCardComponent/GiftCardDetails.swift b/AdyenCard/Components/GiftCardComponent/GiftCardDetails.swift index dc166efd32..62f34e5f8b 100644 --- a/AdyenCard/Components/GiftCardComponent/GiftCardDetails.swift +++ b/AdyenCard/Components/GiftCardComponent/GiftCardDetails.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenCard/Components/GiftCardComponent/MealVoucherDetails.swift b/AdyenCard/Components/GiftCardComponent/MealVoucherDetails.swift index 15f06d6e63..1d70834488 100644 --- a/AdyenCard/Components/GiftCardComponent/MealVoucherDetails.swift +++ b/AdyenCard/Components/GiftCardComponent/MealVoucherDetails.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenCard/Components/GiftCardComponent/PartialPaymentMethodDetails.swift b/AdyenCard/Components/GiftCardComponent/PartialPaymentMethodDetails.swift index 8fe40d8bdb..2e31f1c2fb 100644 --- a/AdyenCard/Components/GiftCardComponent/PartialPaymentMethodDetails.swift +++ b/AdyenCard/Components/GiftCardComponent/PartialPaymentMethodDetails.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenCard/Components/KCP/KCPDetails.swift b/AdyenCard/Components/KCP/KCPDetails.swift index cc502ba965..dd2fb88818 100644 --- a/AdyenCard/Components/KCP/KCPDetails.swift +++ b/AdyenCard/Components/KCP/KCPDetails.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenCard/Components/Stored Card/StoredCardAlertManager.swift b/AdyenCard/Components/Stored Card/StoredCardAlertManager.swift index 56e55f49ce..67a80a8042 100644 --- a/AdyenCard/Components/Stored Card/StoredCardAlertManager.swift +++ b/AdyenCard/Components/Stored Card/StoredCardAlertManager.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenCard/Components/Stored Card/StoredCardComponent.swift b/AdyenCard/Components/Stored Card/StoredCardComponent.swift index 7e519e98e4..c876f44bf7 100644 --- a/AdyenCard/Components/Stored Card/StoredCardComponent.swift +++ b/AdyenCard/Components/Stored Card/StoredCardComponent.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenCard/Components/Stored Card/StoredCardConfiguration.swift b/AdyenCard/Components/Stored Card/StoredCardConfiguration.swift index c9c38b5460..c41ae0898f 100644 --- a/AdyenCard/Components/Stored Card/StoredCardConfiguration.swift +++ b/AdyenCard/Components/Stored Card/StoredCardConfiguration.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenCard/Form/FormCardExpiryDateItem.swift b/AdyenCard/Form/FormCardExpiryDateItem.swift index 30dfcf1ac6..a6d81ad9c9 100644 --- a/AdyenCard/Form/FormCardExpiryDateItem.swift +++ b/AdyenCard/Form/FormCardExpiryDateItem.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenCard/Form/FormCardLogosItemView.swift b/AdyenCard/Form/FormCardLogosItemView.swift index 13185e67b5..d003e8ad69 100644 --- a/AdyenCard/Form/FormCardLogosItemView.swift +++ b/AdyenCard/Form/FormCardLogosItemView.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenCard/Form/FormCardNumberContainerItem.swift b/AdyenCard/Form/FormCardNumberContainerItem.swift index 07712fd0ec..4c8d84cd22 100644 --- a/AdyenCard/Form/FormCardNumberContainerItem.swift +++ b/AdyenCard/Form/FormCardNumberContainerItem.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenCard/Form/FormCardNumberContainerItemView.swift b/AdyenCard/Form/FormCardNumberContainerItemView.swift index 647cbf2c98..70c9b5d301 100644 --- a/AdyenCard/Form/FormCardNumberContainerItemView.swift +++ b/AdyenCard/Form/FormCardNumberContainerItemView.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenCard/Form/FormCardNumberItem.swift b/AdyenCard/Form/FormCardNumberItem.swift index cf0a1c81b0..4093cfaa42 100644 --- a/AdyenCard/Form/FormCardNumberItem.swift +++ b/AdyenCard/Form/FormCardNumberItem.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenCard/Form/FormCardNumberItemView.swift b/AdyenCard/Form/FormCardNumberItemView.swift index 2dbf2dca30..b70f408135 100644 --- a/AdyenCard/Form/FormCardNumberItemView.swift +++ b/AdyenCard/Form/FormCardNumberItemView.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenCard/Form/FormCardSecurityCodeItem.swift b/AdyenCard/Form/FormCardSecurityCodeItem.swift index 85ba67df2c..26d88a572f 100644 --- a/AdyenCard/Form/FormCardSecurityCodeItem.swift +++ b/AdyenCard/Form/FormCardSecurityCodeItem.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenCard/Form/FormCardSecurityCodeItemView.swift b/AdyenCard/Form/FormCardSecurityCodeItemView.swift index 5d27d64bd0..0f0f8c584b 100644 --- a/AdyenCard/Form/FormCardSecurityCodeItemView.swift +++ b/AdyenCard/Form/FormCardSecurityCodeItemView.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenCard/Form/Installments/FormCardInstallmentsItem.swift b/AdyenCard/Form/Installments/FormCardInstallmentsItem.swift index 7a9869c89e..44af40eaea 100644 --- a/AdyenCard/Form/Installments/FormCardInstallmentsItem.swift +++ b/AdyenCard/Form/Installments/FormCardInstallmentsItem.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenCard/Form/Installments/FormCardInstallmentsItemView.swift b/AdyenCard/Form/Installments/FormCardInstallmentsItemView.swift index d6a666af65..409efa9209 100644 --- a/AdyenCard/Form/Installments/FormCardInstallmentsItemView.swift +++ b/AdyenCard/Form/Installments/FormCardInstallmentsItemView.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenCard/Form/Installments/InstallmentPickerElement.swift b/AdyenCard/Form/Installments/InstallmentPickerElement.swift index e2242fec7a..95d72daa3a 100644 --- a/AdyenCard/Form/Installments/InstallmentPickerElement.swift +++ b/AdyenCard/Form/Installments/InstallmentPickerElement.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenCard/Formatters/CardExpiryDateFormatter.swift b/AdyenCard/Formatters/CardExpiryDateFormatter.swift index 62a469e88a..3f81649c16 100644 --- a/AdyenCard/Formatters/CardExpiryDateFormatter.swift +++ b/AdyenCard/Formatters/CardExpiryDateFormatter.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenCard/Formatters/CardNumberFormatter.swift b/AdyenCard/Formatters/CardNumberFormatter.swift index d63a74d93b..9a65c19be5 100644 --- a/AdyenCard/Formatters/CardNumberFormatter.swift +++ b/AdyenCard/Formatters/CardNumberFormatter.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenCard/Formatters/CardSecurityCodeFormatter.swift b/AdyenCard/Formatters/CardSecurityCodeFormatter.swift index 3043b758a7..de359f6165 100644 --- a/AdyenCard/Formatters/CardSecurityCodeFormatter.swift +++ b/AdyenCard/Formatters/CardSecurityCodeFormatter.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenCard/Utilities/BinLookup/BinLookupRequest.swift b/AdyenCard/Utilities/BinLookup/BinLookupRequest.swift index f0055000c6..93ce0ab2d9 100644 --- a/AdyenCard/Utilities/BinLookup/BinLookupRequest.swift +++ b/AdyenCard/Utilities/BinLookup/BinLookupRequest.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenCard/Utilities/BinLookup/BinLookupResponse.swift b/AdyenCard/Utilities/BinLookup/BinLookupResponse.swift index 367a06fc73..9459405f92 100644 --- a/AdyenCard/Utilities/BinLookup/BinLookupResponse.swift +++ b/AdyenCard/Utilities/BinLookup/BinLookupResponse.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenCard/Utilities/BinLookup/BinLookupService.swift b/AdyenCard/Utilities/BinLookup/BinLookupService.swift index de7fad53d0..4b5382cbca 100644 --- a/AdyenCard/Utilities/BinLookup/BinLookupService.swift +++ b/AdyenCard/Utilities/BinLookup/BinLookupService.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenCard/Utilities/BundleSPMExtension.swift b/AdyenCard/Utilities/BundleSPMExtension.swift index de02310b3c..8d808f882c 100644 --- a/AdyenCard/Utilities/BundleSPMExtension.swift +++ b/AdyenCard/Utilities/BundleSPMExtension.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenCard/Utilities/CardType/BinInfoProvider.swift b/AdyenCard/Utilities/CardType/BinInfoProvider.swift index c63ecfb556..3d959aa765 100644 --- a/AdyenCard/Utilities/CardType/BinInfoProvider.swift +++ b/AdyenCard/Utilities/CardType/BinInfoProvider.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenCard/Utilities/CardType/CardBrand.swift b/AdyenCard/Utilities/CardType/CardBrand.swift index 77e91c1d6c..a414c5b7dc 100644 --- a/AdyenCard/Utilities/CardType/CardBrand.swift +++ b/AdyenCard/Utilities/CardType/CardBrand.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenCard/Utilities/CardType/CardTypeDetector.swift b/AdyenCard/Utilities/CardType/CardTypeDetector.swift index a9170355d3..3073da221a 100644 --- a/AdyenCard/Utilities/CardType/CardTypeDetector.swift +++ b/AdyenCard/Utilities/CardType/CardTypeDetector.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenCard/Utilities/CardType/FallbackCardBrandProvider.swift b/AdyenCard/Utilities/CardType/FallbackCardBrandProvider.swift index 4b328b3b66..b8b2a64794 100644 --- a/AdyenCard/Utilities/CardType/FallbackCardBrandProvider.swift +++ b/AdyenCard/Utilities/CardType/FallbackCardBrandProvider.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenCard/Utilities/Non SPM Bundle Extension/CardBundleExtension.swift b/AdyenCard/Utilities/Non SPM Bundle Extension/CardBundleExtension.swift index 3e4a36d4d7..f83d8b48b9 100644 --- a/AdyenCard/Utilities/Non SPM Bundle Extension/CardBundleExtension.swift +++ b/AdyenCard/Utilities/Non SPM Bundle Extension/CardBundleExtension.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenCard/Validators/CardExpiryDateValidator.swift b/AdyenCard/Validators/CardExpiryDateValidator.swift index 2f87dcd8fb..0212922f37 100644 --- a/AdyenCard/Validators/CardExpiryDateValidator.swift +++ b/AdyenCard/Validators/CardExpiryDateValidator.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenCard/Validators/CardNumberValidator.swift b/AdyenCard/Validators/CardNumberValidator.swift index f65c5ce542..37098200f8 100644 --- a/AdyenCard/Validators/CardNumberValidator.swift +++ b/AdyenCard/Validators/CardNumberValidator.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenCard/Validators/CardPublicKeyValidator.swift b/AdyenCard/Validators/CardPublicKeyValidator.swift index 4af4831453..c66a2204ea 100644 --- a/AdyenCard/Validators/CardPublicKeyValidator.swift +++ b/AdyenCard/Validators/CardPublicKeyValidator.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenCard/Validators/CardSecurityCodeValidator.swift b/AdyenCard/Validators/CardSecurityCodeValidator.swift index fe058e2edd..335e217df7 100644 --- a/AdyenCard/Validators/CardSecurityCodeValidator.swift +++ b/AdyenCard/Validators/CardSecurityCodeValidator.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenCashAppPay/CashAppPayButton/CashAppPayButtonItem.swift b/AdyenCashAppPay/CashAppPayButton/CashAppPayButtonItem.swift index 8b9a36ec44..70f12fdf89 100644 --- a/AdyenCashAppPay/CashAppPayButton/CashAppPayButtonItem.swift +++ b/AdyenCashAppPay/CashAppPayButton/CashAppPayButtonItem.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenCashAppPay/CashAppPayButton/CashAppPayButtonItemView.swift b/AdyenCashAppPay/CashAppPayButton/CashAppPayButtonItemView.swift index ed88041a5c..91379123e0 100644 --- a/AdyenCashAppPay/CashAppPayButton/CashAppPayButtonItemView.swift +++ b/AdyenCashAppPay/CashAppPayButton/CashAppPayButtonItemView.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenCashAppPay/CashAppPayComponent.swift b/AdyenCashAppPay/CashAppPayComponent.swift index 960a827a2c..246e1e5b3c 100644 --- a/AdyenCashAppPay/CashAppPayComponent.swift +++ b/AdyenCashAppPay/CashAppPayComponent.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenCashAppPay/CashAppPayConfiguration.swift b/AdyenCashAppPay/CashAppPayConfiguration.swift index 5b6747b5c9..809277d11b 100644 --- a/AdyenCashAppPay/CashAppPayConfiguration.swift +++ b/AdyenCashAppPay/CashAppPayConfiguration.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenCashAppPay/CashAppPayDetails.swift b/AdyenCashAppPay/CashAppPayDetails.swift index e1fb4c070c..16af7a7328 100644 --- a/AdyenCashAppPay/CashAppPayDetails.swift +++ b/AdyenCashAppPay/CashAppPayDetails.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenComponents/ACH Direct Debit/ACHDirectDebitDetails.swift b/AdyenComponents/ACH Direct Debit/ACHDirectDebitDetails.swift index 3cafe81230..64e3a5cf73 100644 --- a/AdyenComponents/ACH Direct Debit/ACHDirectDebitDetails.swift +++ b/AdyenComponents/ACH Direct Debit/ACHDirectDebitDetails.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenComponents/Affirm/AffirmDetails.swift b/AdyenComponents/Affirm/AffirmDetails.swift index 87c938e5d3..8c1ec231d4 100644 --- a/AdyenComponents/Affirm/AffirmDetails.swift +++ b/AdyenComponents/Affirm/AffirmDetails.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenComponents/Apple Pay/ApplePayComponentDelegate.swift b/AdyenComponents/Apple Pay/ApplePayComponentDelegate.swift index 9eb5b0ac64..d3b65102d3 100644 --- a/AdyenComponents/Apple Pay/ApplePayComponentDelegate.swift +++ b/AdyenComponents/Apple Pay/ApplePayComponentDelegate.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenComponents/Apple Pay/ApplePayComponentError.swift b/AdyenComponents/Apple Pay/ApplePayComponentError.swift index f962943976..1586e5652c 100644 --- a/AdyenComponents/Apple Pay/ApplePayComponentError.swift +++ b/AdyenComponents/Apple Pay/ApplePayComponentError.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenComponents/Apple Pay/ApplePayConfiguration.swift b/AdyenComponents/Apple Pay/ApplePayConfiguration.swift index 300ba67026..042efb7197 100644 --- a/AdyenComponents/Apple Pay/ApplePayConfiguration.swift +++ b/AdyenComponents/Apple Pay/ApplePayConfiguration.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenComponents/Apple Pay/ApplePayDetails.swift b/AdyenComponents/Apple Pay/ApplePayDetails.swift index 3fa6323110..10c131b5de 100644 --- a/AdyenComponents/Apple Pay/ApplePayDetails.swift +++ b/AdyenComponents/Apple Pay/ApplePayDetails.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenComponents/Apple Pay/ApplePayPayment.swift b/AdyenComponents/Apple Pay/ApplePayPayment.swift index 25a33d8f09..a7d04ca8f3 100644 --- a/AdyenComponents/Apple Pay/ApplePayPayment.swift +++ b/AdyenComponents/Apple Pay/ApplePayPayment.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenComponents/Atome/AtomeAddressViewModelBuilder.swift b/AdyenComponents/Atome/AtomeAddressViewModelBuilder.swift index d96d4a3d8e..500e1b9761 100644 --- a/AdyenComponents/Atome/AtomeAddressViewModelBuilder.swift +++ b/AdyenComponents/Atome/AtomeAddressViewModelBuilder.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenComponents/Atome/AtomeDetails.swift b/AdyenComponents/Atome/AtomeDetails.swift index 1ea5ea187e..72bb832e5e 100644 --- a/AdyenComponents/Atome/AtomeDetails.swift +++ b/AdyenComponents/Atome/AtomeDetails.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenComponents/BACS Direct Debit/BACSDirectDebitComponent.swift b/AdyenComponents/BACS Direct Debit/BACSDirectDebitComponent.swift index a92433719a..6db72fc71b 100644 --- a/AdyenComponents/BACS Direct Debit/BACSDirectDebitComponent.swift +++ b/AdyenComponents/BACS Direct Debit/BACSDirectDebitComponent.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenComponents/BACS Direct Debit/BACSDirectDebitDetails.swift b/AdyenComponents/BACS Direct Debit/BACSDirectDebitDetails.swift index 8974188a6e..06158d1b39 100644 --- a/AdyenComponents/BACS Direct Debit/BACSDirectDebitDetails.swift +++ b/AdyenComponents/BACS Direct Debit/BACSDirectDebitDetails.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenComponents/BACS Direct Debit/Factories/BACSItemsFactory.swift b/AdyenComponents/BACS Direct Debit/Factories/BACSItemsFactory.swift index 94186da548..7c029a0a35 100644 --- a/AdyenComponents/BACS Direct Debit/Factories/BACSItemsFactory.swift +++ b/AdyenComponents/BACS Direct Debit/Factories/BACSItemsFactory.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenComponents/BACS Direct Debit/Models/BACSDirectDebitData.swift b/AdyenComponents/BACS Direct Debit/Models/BACSDirectDebitData.swift index 2a91129539..fa3a26d761 100644 --- a/AdyenComponents/BACS Direct Debit/Models/BACSDirectDebitData.swift +++ b/AdyenComponents/BACS Direct Debit/Models/BACSDirectDebitData.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenComponents/BACS Direct Debit/Scenes/Confirmation/BACSConfirmationPresenter.swift b/AdyenComponents/BACS Direct Debit/Scenes/Confirmation/BACSConfirmationPresenter.swift index b1300c9b9a..5b290c350e 100644 --- a/AdyenComponents/BACS Direct Debit/Scenes/Confirmation/BACSConfirmationPresenter.swift +++ b/AdyenComponents/BACS Direct Debit/Scenes/Confirmation/BACSConfirmationPresenter.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenComponents/BACS Direct Debit/Scenes/Confirmation/BACSConfirmationViewController.swift b/AdyenComponents/BACS Direct Debit/Scenes/Confirmation/BACSConfirmationViewController.swift index 712981c671..1a22b6a8a9 100644 --- a/AdyenComponents/BACS Direct Debit/Scenes/Confirmation/BACSConfirmationViewController.swift +++ b/AdyenComponents/BACS Direct Debit/Scenes/Confirmation/BACSConfirmationViewController.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenComponents/BACS Direct Debit/Scenes/Input/BACSInputFormViewController.swift b/AdyenComponents/BACS Direct Debit/Scenes/Input/BACSInputFormViewController.swift index 151b157e2a..45c30c91e7 100644 --- a/AdyenComponents/BACS Direct Debit/Scenes/Input/BACSInputFormViewController.swift +++ b/AdyenComponents/BACS Direct Debit/Scenes/Input/BACSInputFormViewController.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenComponents/BACS Direct Debit/Scenes/Input/BACSInputPresenter.swift b/AdyenComponents/BACS Direct Debit/Scenes/Input/BACSInputPresenter.swift index 4cb0ff351a..0697380535 100644 --- a/AdyenComponents/BACS Direct Debit/Scenes/Input/BACSInputPresenter.swift +++ b/AdyenComponents/BACS Direct Debit/Scenes/Input/BACSInputPresenter.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenComponents/BACS Direct Debit/Trackers/BACSDirectDebitComponentTracker.swift b/AdyenComponents/BACS Direct Debit/Trackers/BACSDirectDebitComponentTracker.swift index 4dd54530ee..163a207fbb 100644 --- a/AdyenComponents/BACS Direct Debit/Trackers/BACSDirectDebitComponentTracker.swift +++ b/AdyenComponents/BACS Direct Debit/Trackers/BACSDirectDebitComponentTracker.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenComponents/BLIK/BLIKComponent.swift b/AdyenComponents/BLIK/BLIKComponent.swift index b6f954db2f..35289b78ca 100644 --- a/AdyenComponents/BLIK/BLIKComponent.swift +++ b/AdyenComponents/BLIK/BLIKComponent.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenComponents/BLIK/BLIKDetails.swift b/AdyenComponents/BLIK/BLIKDetails.swift index b9fdfc8362..0034ed7267 100644 --- a/AdyenComponents/BLIK/BLIKDetails.swift +++ b/AdyenComponents/BLIK/BLIKDetails.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenComponents/BasicPersonalInfoFormComponent/BasicPersonalInfoFormComponent.swift b/AdyenComponents/BasicPersonalInfoFormComponent/BasicPersonalInfoFormComponent.swift index 0cd816fd20..2f50a3000e 100644 --- a/AdyenComponents/BasicPersonalInfoFormComponent/BasicPersonalInfoFormComponent.swift +++ b/AdyenComponents/BasicPersonalInfoFormComponent/BasicPersonalInfoFormComponent.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenComponents/BasicPersonalInfoFormComponent/BasicPersonalInfoFormDetails.swift b/AdyenComponents/BasicPersonalInfoFormComponent/BasicPersonalInfoFormDetails.swift index 618376c311..9cd2a0b3cf 100644 --- a/AdyenComponents/BasicPersonalInfoFormComponent/BasicPersonalInfoFormDetails.swift +++ b/AdyenComponents/BasicPersonalInfoFormComponent/BasicPersonalInfoFormDetails.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenComponents/Boleto/BoletoComponentExtensions.swift b/AdyenComponents/Boleto/BoletoComponentExtensions.swift index 703b5a039e..ca5251b986 100644 --- a/AdyenComponents/Boleto/BoletoComponentExtensions.swift +++ b/AdyenComponents/Boleto/BoletoComponentExtensions.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenComponents/Boleto/BoletoDetails.swift b/AdyenComponents/Boleto/BoletoDetails.swift index 8a6738a2cb..fc6e6ad190 100644 --- a/AdyenComponents/Boleto/BoletoDetails.swift +++ b/AdyenComponents/Boleto/BoletoDetails.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenComponents/Doku/DokuComponent.swift b/AdyenComponents/Doku/DokuComponent.swift index f21180926d..9b481c672d 100644 --- a/AdyenComponents/Doku/DokuComponent.swift +++ b/AdyenComponents/Doku/DokuComponent.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenComponents/Doku/DokuDetails.swift b/AdyenComponents/Doku/DokuDetails.swift index d1edcb4973..a15439dcd1 100644 --- a/AdyenComponents/Doku/DokuDetails.swift +++ b/AdyenComponents/Doku/DokuDetails.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenComponents/Instant/InstantComponents.swift b/AdyenComponents/Instant/InstantComponents.swift index 980db3ffeb..4ee4618039 100644 --- a/AdyenComponents/Instant/InstantComponents.swift +++ b/AdyenComponents/Instant/InstantComponents.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenComponents/Issuer List/IssuerListComponent.swift b/AdyenComponents/Issuer List/IssuerListComponent.swift index 10030eb3c5..7a30c3a340 100644 --- a/AdyenComponents/Issuer List/IssuerListComponent.swift +++ b/AdyenComponents/Issuer List/IssuerListComponent.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenComponents/Issuer List/IssuerListDetails.swift b/AdyenComponents/Issuer List/IssuerListDetails.swift index 13af6ed281..6af49a2e5e 100644 --- a/AdyenComponents/Issuer List/IssuerListDetails.swift +++ b/AdyenComponents/Issuer List/IssuerListDetails.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenComponents/Issuer List/IssuerListEmptyView.swift b/AdyenComponents/Issuer List/IssuerListEmptyView.swift index da204575f1..37f4af9bb2 100644 --- a/AdyenComponents/Issuer List/IssuerListEmptyView.swift +++ b/AdyenComponents/Issuer List/IssuerListEmptyView.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenComponents/MB Way/MBWayComponent.swift b/AdyenComponents/MB Way/MBWayComponent.swift index 8d0bfe6b38..c655b241dc 100644 --- a/AdyenComponents/MB Way/MBWayComponent.swift +++ b/AdyenComponents/MB Way/MBWayComponent.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenComponents/MB Way/MBWayDetails.swift b/AdyenComponents/MB Way/MBWayDetails.swift index ab6c860228..9c7cf07fc3 100644 --- a/AdyenComponents/MB Way/MBWayDetails.swift +++ b/AdyenComponents/MB Way/MBWayDetails.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenComponents/OnlineBanking/OnlineBankingComponent.swift b/AdyenComponents/OnlineBanking/OnlineBankingComponent.swift index a550d9d193..c457673657 100644 --- a/AdyenComponents/OnlineBanking/OnlineBankingComponent.swift +++ b/AdyenComponents/OnlineBanking/OnlineBankingComponent.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenComponents/OnlineBanking/OnlineBankingDetails.swift b/AdyenComponents/OnlineBanking/OnlineBankingDetails.swift index 2cfce90832..92b34c8f85 100644 --- a/AdyenComponents/OnlineBanking/OnlineBankingDetails.swift +++ b/AdyenComponents/OnlineBanking/OnlineBankingDetails.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenComponents/Qiwi Wallet/QiwiWalletComponent.swift b/AdyenComponents/Qiwi Wallet/QiwiWalletComponent.swift index 334bbc1811..e342e13dcb 100644 --- a/AdyenComponents/Qiwi Wallet/QiwiWalletComponent.swift +++ b/AdyenComponents/Qiwi Wallet/QiwiWalletComponent.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenComponents/Qiwi Wallet/QiwiWalletDetails.swift b/AdyenComponents/Qiwi Wallet/QiwiWalletDetails.swift index 3fd8614973..1e835583bf 100644 --- a/AdyenComponents/Qiwi Wallet/QiwiWalletDetails.swift +++ b/AdyenComponents/Qiwi Wallet/QiwiWalletDetails.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenComponents/SEPA Direct Debit/SEPADirectDebitComponent.swift b/AdyenComponents/SEPA Direct Debit/SEPADirectDebitComponent.swift index 23f77c95f5..a3b13eb7c9 100644 --- a/AdyenComponents/SEPA Direct Debit/SEPADirectDebitComponent.swift +++ b/AdyenComponents/SEPA Direct Debit/SEPADirectDebitComponent.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenComponents/SEPA Direct Debit/SEPADirectDebitDetails.swift b/AdyenComponents/SEPA Direct Debit/SEPADirectDebitDetails.swift index 0146fc53ae..ac407a2a34 100644 --- a/AdyenComponents/SEPA Direct Debit/SEPADirectDebitDetails.swift +++ b/AdyenComponents/SEPA Direct Debit/SEPADirectDebitDetails.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenComponents/UPI/UPIComponent.swift b/AdyenComponents/UPI/UPIComponent.swift index 64d54f39cc..37e70113ab 100644 --- a/AdyenComponents/UPI/UPIComponent.swift +++ b/AdyenComponents/UPI/UPIComponent.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenComponents/UPI/UPIComponentDetails.swift b/AdyenComponents/UPI/UPIComponentDetails.swift index 30b35b8e12..947bd0ea96 100644 --- a/AdyenComponents/UPI/UPIComponentDetails.swift +++ b/AdyenComponents/UPI/UPIComponentDetails.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenDelegatedAuthentication/AdyenDelegatedAuthentication.swift b/AdyenDelegatedAuthentication/AdyenDelegatedAuthentication.swift index 398ee060d8..c36eeae2af 100644 --- a/AdyenDelegatedAuthentication/AdyenDelegatedAuthentication.swift +++ b/AdyenDelegatedAuthentication/AdyenDelegatedAuthentication.swift @@ -1,8 +1,7 @@ // -// AdyenDelegatedAuthentication.swift +// Copyright (c) 2024 Adyen N.V. // -// -// Created by Mohamed Eldoheiri on 14/11/2023. +// This file is open source and available under the MIT license. See the LICENSE file for more info. // import Foundation diff --git a/AdyenDropIn/Components/PaymentMethodListComponent.swift b/AdyenDropIn/Components/PaymentMethodListComponent.swift index 1e5c5a7800..9fd155ae75 100644 --- a/AdyenDropIn/Components/PaymentMethodListComponent.swift +++ b/AdyenDropIn/Components/PaymentMethodListComponent.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenDropIn/Components/PreApplePayComponent.swift b/AdyenDropIn/Components/PreApplePayComponent.swift index 48a41eba78..0bdc981478 100644 --- a/AdyenDropIn/Components/PreApplePayComponent.swift +++ b/AdyenDropIn/Components/PreApplePayComponent.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenDropIn/Components/PreselectedPaymentMethodComponent.swift b/AdyenDropIn/Components/PreselectedPaymentMethodComponent.swift index b992d1c180..0fd19876ca 100644 --- a/AdyenDropIn/Components/PreselectedPaymentMethodComponent.swift +++ b/AdyenDropIn/Components/PreselectedPaymentMethodComponent.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenDropIn/DropInComponent.swift b/AdyenDropIn/DropInComponent.swift index ec088b8d79..096d741dc8 100644 --- a/AdyenDropIn/DropInComponent.swift +++ b/AdyenDropIn/DropInComponent.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenDropIn/DropInComponentExtensions.swift b/AdyenDropIn/DropInComponentExtensions.swift index 4644fadabb..947f1d2ff1 100644 --- a/AdyenDropIn/DropInComponentExtensions.swift +++ b/AdyenDropIn/DropInComponentExtensions.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenDropIn/Models/DropInComponentStyle.swift b/AdyenDropIn/Models/DropInComponentStyle.swift index 9dc83c22cf..16ae20e18a 100644 --- a/AdyenDropIn/Models/DropInComponentStyle.swift +++ b/AdyenDropIn/Models/DropInComponentStyle.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenDropIn/Models/DropInConfiguration.swift b/AdyenDropIn/Models/DropInConfiguration.swift index 057aa63c6a..3a688b618e 100644 --- a/AdyenDropIn/Models/DropInConfiguration.swift +++ b/AdyenDropIn/Models/DropInConfiguration.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenDropIn/Presentation/DimmingPresentationController.swift b/AdyenDropIn/Presentation/DimmingPresentationController.swift index 2118fb6898..de462e3fbf 100644 --- a/AdyenDropIn/Presentation/DimmingPresentationController.swift +++ b/AdyenDropIn/Presentation/DimmingPresentationController.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenDropIn/Presentation/DropInNavigationController.swift b/AdyenDropIn/Presentation/DropInNavigationController.swift index bbb6f5486d..948028a16a 100644 --- a/AdyenDropIn/Presentation/DropInNavigationController.swift +++ b/AdyenDropIn/Presentation/DropInNavigationController.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenDropIn/Presentation/ModalViewController.swift b/AdyenDropIn/Presentation/ModalViewController.swift index 17e98f41d8..bab1da9170 100644 --- a/AdyenDropIn/Presentation/ModalViewController.swift +++ b/AdyenDropIn/Presentation/ModalViewController.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenDropIn/Presentation/NavigationDelegate.swift b/AdyenDropIn/Presentation/NavigationDelegate.swift index af8b6fbe9a..c2a3a54d83 100644 --- a/AdyenDropIn/Presentation/NavigationDelegate.swift +++ b/AdyenDropIn/Presentation/NavigationDelegate.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenDropIn/Presentation/SlideInPresentationAnimator.swift b/AdyenDropIn/Presentation/SlideInPresentationAnimator.swift index 04280c241c..becbd334fd 100644 --- a/AdyenDropIn/Presentation/SlideInPresentationAnimator.swift +++ b/AdyenDropIn/Presentation/SlideInPresentationAnimator.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenDropIn/Presentation/WrapperViewController.swift b/AdyenDropIn/Presentation/WrapperViewController.swift index b788f72d15..09169e324c 100644 --- a/AdyenDropIn/Presentation/WrapperViewController.swift +++ b/AdyenDropIn/Presentation/WrapperViewController.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenDropIn/Utilities/ComponentManager+PaymentComponentBuilder.swift b/AdyenDropIn/Utilities/ComponentManager+PaymentComponentBuilder.swift index 5b91e15bcf..524e5545d0 100644 --- a/AdyenDropIn/Utilities/ComponentManager+PaymentComponentBuilder.swift +++ b/AdyenDropIn/Utilities/ComponentManager+PaymentComponentBuilder.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenDropIn/Utilities/ComponentManager.swift b/AdyenDropIn/Utilities/ComponentManager.swift index 1f881e4ba2..bf66ad1248 100644 --- a/AdyenDropIn/Utilities/ComponentManager.swift +++ b/AdyenDropIn/Utilities/ComponentManager.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenDropIn/Utilities/ComponentSections.swift b/AdyenDropIn/Utilities/ComponentSections.swift index 175a543ae5..a1d228be13 100644 --- a/AdyenDropIn/Utilities/ComponentSections.swift +++ b/AdyenDropIn/Utilities/ComponentSections.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenDropIn/Views/PreApplePayView.swift b/AdyenDropIn/Views/PreApplePayView.swift index 6850b00b1c..2f93d587dd 100644 --- a/AdyenDropIn/Views/PreApplePayView.swift +++ b/AdyenDropIn/Views/PreApplePayView.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenEncryption/AnyEncryptor.swift b/AdyenEncryption/AnyEncryptor.swift index 6ec8da8413..12b7eeef8c 100644 --- a/AdyenEncryption/AnyEncryptor.swift +++ b/AdyenEncryption/AnyEncryptor.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenEncryption/BankDetailsEncryptor.swift b/AdyenEncryption/BankDetailsEncryptor.swift index 19659bcd15..cbcd55248c 100644 --- a/AdyenEncryption/BankDetailsEncryptor.swift +++ b/AdyenEncryption/BankDetailsEncryptor.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenEncryption/CardEncryptor.swift b/AdyenEncryption/CardEncryptor.swift index f0dc4cae02..156a7d1d1b 100644 --- a/AdyenEncryption/CardEncryptor.swift +++ b/AdyenEncryption/CardEncryptor.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenEncryption/Extensions/DataExtension.swift b/AdyenEncryption/Extensions/DataExtension.swift index 0e40ca57b8..b7a2db14bd 100644 --- a/AdyenEncryption/Extensions/DataExtension.swift +++ b/AdyenEncryption/Extensions/DataExtension.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenEncryption/Extensions/IntegerExtension.swift b/AdyenEncryption/Extensions/IntegerExtension.swift index 864977a488..ff36f310b6 100644 --- a/AdyenEncryption/Extensions/IntegerExtension.swift +++ b/AdyenEncryption/Extensions/IntegerExtension.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenEncryption/Extensions/StringExtension.swift b/AdyenEncryption/Extensions/StringExtension.swift index 77496a5731..4308d041e2 100644 --- a/AdyenEncryption/Extensions/StringExtension.swift +++ b/AdyenEncryption/Extensions/StringExtension.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenEncryption/JOSE/Encryption Algorithms/CommonCryptoHelpers.swift b/AdyenEncryption/JOSE/Encryption Algorithms/CommonCryptoHelpers.swift index 74c4aaacea..d10b55d45a 100644 --- a/AdyenEncryption/JOSE/Encryption Algorithms/CommonCryptoHelpers.swift +++ b/AdyenEncryption/JOSE/Encryption Algorithms/CommonCryptoHelpers.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenEncryption/JOSE/Encryption Algorithms/Content Encryption Algorithms/JWAA256CBCHS512Algorithm.swift b/AdyenEncryption/JOSE/Encryption Algorithms/Content Encryption Algorithms/JWAA256CBCHS512Algorithm.swift index ce2174de3b..b20ad9cbd8 100644 --- a/AdyenEncryption/JOSE/Encryption Algorithms/Content Encryption Algorithms/JWAA256CBCHS512Algorithm.swift +++ b/AdyenEncryption/JOSE/Encryption Algorithms/Content Encryption Algorithms/JWAA256CBCHS512Algorithm.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenEncryption/JOSE/Encryption Algorithms/Content Encryption Algorithms/JWAEncryptionAlgorithm.swift b/AdyenEncryption/JOSE/Encryption Algorithms/Content Encryption Algorithms/JWAEncryptionAlgorithm.swift index 40dafc264a..d1ae41c22b 100644 --- a/AdyenEncryption/JOSE/Encryption Algorithms/Content Encryption Algorithms/JWAEncryptionAlgorithm.swift +++ b/AdyenEncryption/JOSE/Encryption Algorithms/Content Encryption Algorithms/JWAEncryptionAlgorithm.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenEncryption/JOSE/Encryption Algorithms/JSON Web Encryption/JSONWebEncryption.swift b/AdyenEncryption/JOSE/Encryption Algorithms/JSON Web Encryption/JSONWebEncryption.swift index 5e581a0aa5..72a82fec7e 100644 --- a/AdyenEncryption/JOSE/Encryption Algorithms/JSON Web Encryption/JSONWebEncryption.swift +++ b/AdyenEncryption/JOSE/Encryption Algorithms/JSON Web Encryption/JSONWebEncryption.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenEncryption/JOSE/Encryption Algorithms/JSON Web Encryption/JSONWebEncryptionGenerator.swift b/AdyenEncryption/JOSE/Encryption Algorithms/JSON Web Encryption/JSONWebEncryptionGenerator.swift index 11c4a204f7..bc3e9e53c9 100644 --- a/AdyenEncryption/JOSE/Encryption Algorithms/JSON Web Encryption/JSONWebEncryptionGenerator.swift +++ b/AdyenEncryption/JOSE/Encryption Algorithms/JSON Web Encryption/JSONWebEncryptionGenerator.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenEncryption/JOSE/Encryption Algorithms/Key Encryption Algorithms/RSAOAEP256Algorithm.swift b/AdyenEncryption/JOSE/Encryption Algorithms/Key Encryption Algorithms/RSAOAEP256Algorithm.swift index a66ebcd520..745aa1be4b 100644 --- a/AdyenEncryption/JOSE/Encryption Algorithms/Key Encryption Algorithms/RSAOAEP256Algorithm.swift +++ b/AdyenEncryption/JOSE/Encryption Algorithms/Key Encryption Algorithms/RSAOAEP256Algorithm.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenEncryption/Model/Card.swift b/AdyenEncryption/Model/Card.swift index 15eec0e5ed..b12d06be2e 100644 --- a/AdyenEncryption/Model/Card.swift +++ b/AdyenEncryption/Model/Card.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenEncryption/Model/EncryptedCard.swift b/AdyenEncryption/Model/EncryptedCard.swift index 927b5ad94b..ba166d2816 100644 --- a/AdyenEncryption/Model/EncryptedCard.swift +++ b/AdyenEncryption/Model/EncryptedCard.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenEncryption/Payload/BankPayload.swift b/AdyenEncryption/Payload/BankPayload.swift index 244a31c9e8..34899ed63f 100644 --- a/AdyenEncryption/Payload/BankPayload.swift +++ b/AdyenEncryption/Payload/BankPayload.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenEncryption/Payload/BinPayload.swift b/AdyenEncryption/Payload/BinPayload.swift index ae9c653481..3fcb280584 100644 --- a/AdyenEncryption/Payload/BinPayload.swift +++ b/AdyenEncryption/Payload/BinPayload.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenEncryption/Payload/CardPayload.swift b/AdyenEncryption/Payload/CardPayload.swift index 0d1d6c7b35..2dc982a34a 100644 --- a/AdyenEncryption/Payload/CardPayload.swift +++ b/AdyenEncryption/Payload/CardPayload.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenEncryption/Payload/Payload.swift b/AdyenEncryption/Payload/Payload.swift index 66ecc677b9..d5d30322c0 100644 --- a/AdyenEncryption/Payload/Payload.swift +++ b/AdyenEncryption/Payload/Payload.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenSession/API/Partial Payments API/Balance check/BalanceCheckRequest.swift b/AdyenSession/API/Partial Payments API/Balance check/BalanceCheckRequest.swift index 757ca9a25b..a2e0624bd0 100644 --- a/AdyenSession/API/Partial Payments API/Balance check/BalanceCheckRequest.swift +++ b/AdyenSession/API/Partial Payments API/Balance check/BalanceCheckRequest.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenSession/API/Partial Payments API/Cancel Order/CancelOrderRequest.swift b/AdyenSession/API/Partial Payments API/Cancel Order/CancelOrderRequest.swift index 98bdcdebfc..f7604abe04 100644 --- a/AdyenSession/API/Partial Payments API/Cancel Order/CancelOrderRequest.swift +++ b/AdyenSession/API/Partial Payments API/Cancel Order/CancelOrderRequest.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenSession/API/Partial Payments API/Create Order/CreateOrderRequest.swift b/AdyenSession/API/Partial Payments API/Create Order/CreateOrderRequest.swift index 194a66f07d..55a8e89478 100644 --- a/AdyenSession/API/Partial Payments API/Create Order/CreateOrderRequest.swift +++ b/AdyenSession/API/Partial Payments API/Create Order/CreateOrderRequest.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenSession/API/Payment Details/PaymentDetailsRequest.swift b/AdyenSession/API/Payment Details/PaymentDetailsRequest.swift index 9765c0a769..1ce324ce7e 100644 --- a/AdyenSession/API/Payment Details/PaymentDetailsRequest.swift +++ b/AdyenSession/API/Payment Details/PaymentDetailsRequest.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenSession/API/Payments/PaymentsRequest.swift b/AdyenSession/API/Payments/PaymentsRequest.swift index 7cde5488bc..4b85a218c5 100644 --- a/AdyenSession/API/Payments/PaymentsRequest.swift +++ b/AdyenSession/API/Payments/PaymentsRequest.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenSession/API/SelfRetainingAPIClient.swift b/AdyenSession/API/SelfRetainingAPIClient.swift index 4abfe84882..1344eba60b 100644 --- a/AdyenSession/API/SelfRetainingAPIClient.swift +++ b/AdyenSession/API/SelfRetainingAPIClient.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenSession/API/Session Setup/SessionSetupRequest.swift b/AdyenSession/API/Session Setup/SessionSetupRequest.swift index ba8f50b281..dcd3f82e30 100644 --- a/AdyenSession/API/Session Setup/SessionSetupRequest.swift +++ b/AdyenSession/API/Session Setup/SessionSetupRequest.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenSession/API/SessionAPIClient.swift b/AdyenSession/API/SessionAPIClient.swift index e7a1f37e7a..dd83e11746 100644 --- a/AdyenSession/API/SessionAPIClient.swift +++ b/AdyenSession/API/SessionAPIClient.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenSession/AdyenSession+ActionComponentDelegate.swift b/AdyenSession/AdyenSession+ActionComponentDelegate.swift index 37f7d29867..4c02038a01 100644 --- a/AdyenSession/AdyenSession+ActionComponentDelegate.swift +++ b/AdyenSession/AdyenSession+ActionComponentDelegate.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenSession/AdyenSession+DropInComponentDelegate.swift b/AdyenSession/AdyenSession+DropInComponentDelegate.swift index 5da2c8535d..5f4b490a98 100644 --- a/AdyenSession/AdyenSession+DropInComponentDelegate.swift +++ b/AdyenSession/AdyenSession+DropInComponentDelegate.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenSession/AdyenSession+PartialPaymentDelegate.swift b/AdyenSession/AdyenSession+PartialPaymentDelegate.swift index df884e1ef1..80a37b3c12 100644 --- a/AdyenSession/AdyenSession+PartialPaymentDelegate.swift +++ b/AdyenSession/AdyenSession+PartialPaymentDelegate.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenSession/AdyenSession+PaymentComponentDelegate.swift b/AdyenSession/AdyenSession+PaymentComponentDelegate.swift index 3c0a92eb42..6995c9c5de 100644 --- a/AdyenSession/AdyenSession+PaymentComponentDelegate.swift +++ b/AdyenSession/AdyenSession+PaymentComponentDelegate.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenSession/AdyenSession.swift b/AdyenSession/AdyenSession.swift index 107365740a..00f46d0d1f 100644 --- a/AdyenSession/AdyenSession.swift +++ b/AdyenSession/AdyenSession.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenSession/AdyenSessionDelegate.swift b/AdyenSession/AdyenSessionDelegate.swift index 6107b71651..7e20885afe 100644 --- a/AdyenSession/AdyenSessionDelegate.swift +++ b/AdyenSession/AdyenSessionDelegate.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenSession/AdyenSessionResult.swift b/AdyenSession/AdyenSessionResult.swift index fec2a24fca..d108685964 100644 --- a/AdyenSession/AdyenSessionResult.swift +++ b/AdyenSession/AdyenSessionResult.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenSwiftUI/Present View Controller/FullScreenViewControllerPresenter.swift b/AdyenSwiftUI/Present View Controller/FullScreenViewControllerPresenter.swift index 838cae1f38..ac10ad70e6 100644 --- a/AdyenSwiftUI/Present View Controller/FullScreenViewControllerPresenter.swift +++ b/AdyenSwiftUI/Present View Controller/FullScreenViewControllerPresenter.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenWeChatPay/WeChatPayActionComponent/WeChatPayActionComponent.swift b/AdyenWeChatPay/WeChatPayActionComponent/WeChatPayActionComponent.swift index fa3ec5306d..a71be4debe 100644 --- a/AdyenWeChatPay/WeChatPayActionComponent/WeChatPayActionComponent.swift +++ b/AdyenWeChatPay/WeChatPayActionComponent/WeChatPayActionComponent.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/AdyenWeChatPay/WeChatPayActionComponent/WeChatPayAdditionalDetails.swift b/AdyenWeChatPay/WeChatPayActionComponent/WeChatPayAdditionalDetails.swift index 00b28a5fff..89157061e0 100644 --- a/AdyenWeChatPay/WeChatPayActionComponent/WeChatPayAdditionalDetails.swift +++ b/AdyenWeChatPay/WeChatPayActionComponent/WeChatPayAdditionalDetails.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Demo/Common/Configuration/AnalyticsSettingsView.swift b/Demo/Common/Configuration/AnalyticsSettingsView.swift index f4d2070ef3..6ee03b4b29 100644 --- a/Demo/Common/Configuration/AnalyticsSettingsView.swift +++ b/Demo/Common/Configuration/AnalyticsSettingsView.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Demo/Common/Configuration/ApplePaySettingsView.swift b/Demo/Common/Configuration/ApplePaySettingsView.swift index 6021a2dcea..8116d407b0 100644 --- a/Demo/Common/Configuration/ApplePaySettingsView.swift +++ b/Demo/Common/Configuration/ApplePaySettingsView.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Demo/Common/Configuration/ConfigurationView.swift b/Demo/Common/Configuration/ConfigurationView.swift index 5e6df329a3..e832b41e9e 100644 --- a/Demo/Common/Configuration/ConfigurationView.swift +++ b/Demo/Common/Configuration/ConfigurationView.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Demo/Common/Configuration/DropInSettingsView.swift b/Demo/Common/Configuration/DropInSettingsView.swift index 935be4eaab..f7068bee0f 100644 --- a/Demo/Common/Configuration/DropInSettingsView.swift +++ b/Demo/Common/Configuration/DropInSettingsView.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Demo/Common/Configuration/SearchBar.swift b/Demo/Common/Configuration/SearchBar.swift index 81f5409403..884cf74d4f 100644 --- a/Demo/Common/Configuration/SearchBar.swift +++ b/Demo/Common/Configuration/SearchBar.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Demo/Common/Helpers/APIClientHelper.swift b/Demo/Common/Helpers/APIClientHelper.swift index dce8a240ea..d497a24d54 100644 --- a/Demo/Common/Helpers/APIClientHelper.swift +++ b/Demo/Common/Helpers/APIClientHelper.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Demo/Common/Helpers/CodingHelpers.swift b/Demo/Common/Helpers/CodingHelpers.swift index bc96eecaa9..391836e928 100644 --- a/Demo/Common/Helpers/CodingHelpers.swift +++ b/Demo/Common/Helpers/CodingHelpers.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Demo/Common/IntegrationExamples/ComponentCreationError.swift b/Demo/Common/IntegrationExamples/ComponentCreationError.swift index b571253018..0f88794d14 100644 --- a/Demo/Common/IntegrationExamples/ComponentCreationError.swift +++ b/Demo/Common/IntegrationExamples/ComponentCreationError.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Demo/Common/IntegrationExamples/Components/ApplePayComponentAdvancedFlowExample.swift b/Demo/Common/IntegrationExamples/Components/ApplePayComponentAdvancedFlowExample.swift index df441c48ca..682fb60e57 100644 --- a/Demo/Common/IntegrationExamples/Components/ApplePayComponentAdvancedFlowExample.swift +++ b/Demo/Common/IntegrationExamples/Components/ApplePayComponentAdvancedFlowExample.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Demo/Common/IntegrationExamples/Components/ApplePayComponentExample.swift b/Demo/Common/IntegrationExamples/Components/ApplePayComponentExample.swift index c1021d713c..eefa9aacbf 100644 --- a/Demo/Common/IntegrationExamples/Components/ApplePayComponentExample.swift +++ b/Demo/Common/IntegrationExamples/Components/ApplePayComponentExample.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Demo/Common/IntegrationExamples/Components/CardComponentAdvancedFlowExample.swift b/Demo/Common/IntegrationExamples/Components/CardComponentAdvancedFlowExample.swift index f761d7de0a..bed6220644 100644 --- a/Demo/Common/IntegrationExamples/Components/CardComponentAdvancedFlowExample.swift +++ b/Demo/Common/IntegrationExamples/Components/CardComponentAdvancedFlowExample.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Demo/Common/IntegrationExamples/Components/CardComponentExample.swift b/Demo/Common/IntegrationExamples/Components/CardComponentExample.swift index 208113ebc3..ea52654fb3 100644 --- a/Demo/Common/IntegrationExamples/Components/CardComponentExample.swift +++ b/Demo/Common/IntegrationExamples/Components/CardComponentExample.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Demo/Common/IntegrationExamples/Components/InstantPaymentComponentAdvancedFlowExample.swift b/Demo/Common/IntegrationExamples/Components/InstantPaymentComponentAdvancedFlowExample.swift index 45781629b4..18e77cbf0e 100644 --- a/Demo/Common/IntegrationExamples/Components/InstantPaymentComponentAdvancedFlowExample.swift +++ b/Demo/Common/IntegrationExamples/Components/InstantPaymentComponentAdvancedFlowExample.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Demo/Common/IntegrationExamples/Components/InstantPaymentComponentExample.swift b/Demo/Common/IntegrationExamples/Components/InstantPaymentComponentExample.swift index 13434c42d7..18011500cf 100644 --- a/Demo/Common/IntegrationExamples/Components/InstantPaymentComponentExample.swift +++ b/Demo/Common/IntegrationExamples/Components/InstantPaymentComponentExample.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Demo/Common/IntegrationExamples/Components/IssuerListComponentAdvancedFlowExample.swift b/Demo/Common/IntegrationExamples/Components/IssuerListComponentAdvancedFlowExample.swift index 288200fc8e..3a3eee6d31 100644 --- a/Demo/Common/IntegrationExamples/Components/IssuerListComponentAdvancedFlowExample.swift +++ b/Demo/Common/IntegrationExamples/Components/IssuerListComponentAdvancedFlowExample.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Demo/Common/IntegrationExamples/Components/IssuerListComponentExample.swift b/Demo/Common/IntegrationExamples/Components/IssuerListComponentExample.swift index c6b72d0373..94c97fa003 100644 --- a/Demo/Common/IntegrationExamples/Components/IssuerListComponentExample.swift +++ b/Demo/Common/IntegrationExamples/Components/IssuerListComponentExample.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Demo/Common/IntegrationExamples/DemoAddressLookupProvider.swift b/Demo/Common/IntegrationExamples/DemoAddressLookupProvider.swift index 9d93aed40d..89993f19a7 100644 --- a/Demo/Common/IntegrationExamples/DemoAddressLookupProvider.swift +++ b/Demo/Common/IntegrationExamples/DemoAddressLookupProvider.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Demo/Common/IntegrationExamples/DropIn/DropInAdvancedFlowExample.swift b/Demo/Common/IntegrationExamples/DropIn/DropInAdvancedFlowExample.swift index 439ce3be8e..c72468d4df 100644 --- a/Demo/Common/IntegrationExamples/DropIn/DropInAdvancedFlowExample.swift +++ b/Demo/Common/IntegrationExamples/DropIn/DropInAdvancedFlowExample.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Demo/Common/IntegrationExamples/DropIn/DropInExample.swift b/Demo/Common/IntegrationExamples/DropIn/DropInExample.swift index 8695dbe441..27ac012c61 100644 --- a/Demo/Common/IntegrationExamples/DropIn/DropInExample.swift +++ b/Demo/Common/IntegrationExamples/DropIn/DropInExample.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Demo/Common/IntegrationExamples/MapkitAddressLookupProvider.swift b/Demo/Common/IntegrationExamples/MapkitAddressLookupProvider.swift index 977a106fe5..a0d6f377b9 100644 --- a/Demo/Common/IntegrationExamples/MapkitAddressLookupProvider.swift +++ b/Demo/Common/IntegrationExamples/MapkitAddressLookupProvider.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Demo/Common/IntegrationExamples/Protocols/InitialDataAdvancedFlowProtocol.swift b/Demo/Common/IntegrationExamples/Protocols/InitialDataAdvancedFlowProtocol.swift index d1b9044d58..f4e9401e07 100644 --- a/Demo/Common/IntegrationExamples/Protocols/InitialDataAdvancedFlowProtocol.swift +++ b/Demo/Common/IntegrationExamples/Protocols/InitialDataAdvancedFlowProtocol.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Demo/Common/IntegrationExamples/Protocols/InitialDataFlowProtocol.swift b/Demo/Common/IntegrationExamples/Protocols/InitialDataFlowProtocol.swift index f23f668c50..cbdc626f2b 100644 --- a/Demo/Common/IntegrationExamples/Protocols/InitialDataFlowProtocol.swift +++ b/Demo/Common/IntegrationExamples/Protocols/InitialDataFlowProtocol.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Demo/Common/IntegrationExamples/Protocols/PresenterExampleProtocol.swift b/Demo/Common/IntegrationExamples/Protocols/PresenterExampleProtocol.swift index 23db2a3f1d..566893e4ce 100644 --- a/Demo/Common/IntegrationExamples/Protocols/PresenterExampleProtocol.swift +++ b/Demo/Common/IntegrationExamples/Protocols/PresenterExampleProtocol.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Demo/Common/Models/ComponentsItem.swift b/Demo/Common/Models/ComponentsItem.swift index 4e73678130..ffc69c9e05 100644 --- a/Demo/Common/Models/ComponentsItem.swift +++ b/Demo/Common/Models/ComponentsItem.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Demo/Common/Networking/APIRequest.swift b/Demo/Common/Networking/APIRequest.swift index e479b83799..a648bae194 100644 --- a/Demo/Common/Networking/APIRequest.swift +++ b/Demo/Common/Networking/APIRequest.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Demo/Common/Networking/BalanceCheckRequest.swift b/Demo/Common/Networking/BalanceCheckRequest.swift index 58d4e33999..0158b22512 100644 --- a/Demo/Common/Networking/BalanceCheckRequest.swift +++ b/Demo/Common/Networking/BalanceCheckRequest.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Demo/Common/Networking/CancelOrderRequest.swift b/Demo/Common/Networking/CancelOrderRequest.swift index 37da2699ce..b2cd2e9d1a 100644 --- a/Demo/Common/Networking/CancelOrderRequest.swift +++ b/Demo/Common/Networking/CancelOrderRequest.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Demo/Common/Networking/CreateOrderRequest.swift b/Demo/Common/Networking/CreateOrderRequest.swift index 8aac35a4c8..2223f8e446 100644 --- a/Demo/Common/Networking/CreateOrderRequest.swift +++ b/Demo/Common/Networking/CreateOrderRequest.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Demo/Common/Networking/DefaultAPIClient.swift b/Demo/Common/Networking/DefaultAPIClient.swift index fc935cfa15..dd62bb2172 100644 --- a/Demo/Common/Networking/DefaultAPIClient.swift +++ b/Demo/Common/Networking/DefaultAPIClient.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Demo/Common/Networking/DisableStoredPaymentMethodRequest.swift b/Demo/Common/Networking/DisableStoredPaymentMethodRequest.swift index 5809d03459..ac347b0cfa 100644 --- a/Demo/Common/Networking/DisableStoredPaymentMethodRequest.swift +++ b/Demo/Common/Networking/DisableStoredPaymentMethodRequest.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Demo/Common/Networking/Environment.swift b/Demo/Common/Networking/Environment.swift index f6f1e2234a..8800dc678c 100644 --- a/Demo/Common/Networking/Environment.swift +++ b/Demo/Common/Networking/Environment.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Demo/Common/Networking/PaymentDetailsRequest.swift b/Demo/Common/Networking/PaymentDetailsRequest.swift index 0db240e6f1..ee641be9ab 100644 --- a/Demo/Common/Networking/PaymentDetailsRequest.swift +++ b/Demo/Common/Networking/PaymentDetailsRequest.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Demo/Common/Networking/PaymentMethodsRequest.swift b/Demo/Common/Networking/PaymentMethodsRequest.swift index 33b54d62db..1238158675 100644 --- a/Demo/Common/Networking/PaymentMethodsRequest.swift +++ b/Demo/Common/Networking/PaymentMethodsRequest.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Demo/Common/Networking/PaymentsRequest.swift b/Demo/Common/Networking/PaymentsRequest.swift index 2ac5a9583d..dd22d219e0 100644 --- a/Demo/Common/Networking/PaymentsRequest.swift +++ b/Demo/Common/Networking/PaymentsRequest.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Demo/Common/Networking/SessionRequest.swift b/Demo/Common/Networking/SessionRequest.swift index 07a182f449..c86be2689c 100644 --- a/Demo/Common/Networking/SessionRequest.swift +++ b/Demo/Common/Networking/SessionRequest.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Demo/Common/PresentationDelegates/BACSDirectDebitPresentationDelegate.swift b/Demo/Common/PresentationDelegates/BACSDirectDebitPresentationDelegate.swift index 4bf80472a1..bb2b819c52 100644 --- a/Demo/Common/PresentationDelegates/BACSDirectDebitPresentationDelegate.swift +++ b/Demo/Common/PresentationDelegates/BACSDirectDebitPresentationDelegate.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Demo/Common/Utils/APIClientMock.swift b/Demo/Common/Utils/APIClientMock.swift index d0df6b15ed..f1271fe50e 100644 --- a/Demo/Common/Utils/APIClientMock.swift +++ b/Demo/Common/Utils/APIClientMock.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Demo/SwiftUI/AppDelegate.swift b/Demo/SwiftUI/AppDelegate.swift index c7ca27756c..bcf8c37343 100644 --- a/Demo/SwiftUI/AppDelegate.swift +++ b/Demo/SwiftUI/AppDelegate.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Demo/SwiftUI/ComponentsView.swift b/Demo/SwiftUI/ComponentsView.swift index 6a6b057acd..24e45d78ee 100644 --- a/Demo/SwiftUI/ComponentsView.swift +++ b/Demo/SwiftUI/ComponentsView.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Demo/SwiftUI/ComponentsViewModel.swift b/Demo/SwiftUI/ComponentsViewModel.swift index 2535776423..70960b84d4 100644 --- a/Demo/SwiftUI/ComponentsViewModel.swift +++ b/Demo/SwiftUI/ComponentsViewModel.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Demo/SwiftUI/SceneDelegate.swift b/Demo/SwiftUI/SceneDelegate.swift index c44fae39ff..994cc91633 100644 --- a/Demo/SwiftUI/SceneDelegate.swift +++ b/Demo/SwiftUI/SceneDelegate.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Demo/UIKit/AppDelegate.swift b/Demo/UIKit/AppDelegate.swift index bedcc78602..2fbaf6b2de 100644 --- a/Demo/UIKit/AppDelegate.swift +++ b/Demo/UIKit/AppDelegate.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Demo/UIKit/ComponentsView.swift b/Demo/UIKit/ComponentsView.swift index a93d002bdc..bba281ce0b 100644 --- a/Demo/UIKit/ComponentsView.swift +++ b/Demo/UIKit/ComponentsView.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Demo/UIKit/ComponentsViewController.swift b/Demo/UIKit/ComponentsViewController.swift index 0029ea668d..fbfe4cd400 100644 --- a/Demo/UIKit/ComponentsViewController.swift +++ b/Demo/UIKit/ComponentsViewController.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Demo/UIKit/UIView+Helpers.swift b/Demo/UIKit/UIView+Helpers.swift index fcc278ed25..1846a32156 100644 --- a/Demo/UIKit/UIView+Helpers.swift +++ b/Demo/UIKit/UIView+Helpers.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Actions Tests/ActionComponent/ActionComponentDelegateMock.swift b/Tests/Actions Tests/ActionComponent/ActionComponentDelegateMock.swift index 693387a3a8..5a8fdc61b2 100644 --- a/Tests/Actions Tests/ActionComponent/ActionComponentDelegateMock.swift +++ b/Tests/Actions Tests/ActionComponent/ActionComponentDelegateMock.swift @@ -1,5 +1,5 @@ // -// Copyright © 2020 Adyen. All rights reserved. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Actions Tests/ActionComponent/AdyenActionComponentTests.swift b/Tests/Actions Tests/ActionComponent/AdyenActionComponentTests.swift index 97aced2eec..bbf8333866 100644 --- a/Tests/Actions Tests/ActionComponent/AdyenActionComponentTests.swift +++ b/Tests/Actions Tests/ActionComponent/AdyenActionComponentTests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Actions Tests/Await/AwaitComponentTests.swift b/Tests/Actions Tests/Await/AwaitComponentTests.swift index d660acf75a..42ac733308 100644 --- a/Tests/Actions Tests/Await/AwaitComponentTests.swift +++ b/Tests/Actions Tests/Await/AwaitComponentTests.swift @@ -1,9 +1,7 @@ // -// AwaitComponentTests.swift -// AdyenTests +// Copyright (c) 2024 Adyen N.V. // -// Created by Mohamed Eldoheiri on 8/11/20. -// Copyright © 2020 Adyen. All rights reserved. +// This file is open source and available under the MIT license. See the LICENSE file for more info. // @_spi(AdyenInternal) @testable import Adyen diff --git a/Tests/Actions Tests/Await/PollingComponentTests.swift b/Tests/Actions Tests/Await/PollingComponentTests.swift index 46ad2019d8..6f9e607727 100644 --- a/Tests/Actions Tests/Await/PollingComponentTests.swift +++ b/Tests/Actions Tests/Await/PollingComponentTests.swift @@ -1,9 +1,7 @@ // -// PollingComponentTests.swift -// AdyenTests +// Copyright (c) 2024 Adyen N.V. // -// Created by Mohamed Eldoheiri on 8/12/20. -// Copyright © 2020 Adyen. All rights reserved. +// This file is open source and available under the MIT license. See the LICENSE file for more info. // @_spi(AdyenInternal) @testable import Adyen diff --git a/Tests/Actions Tests/Redirect/RedirectComponentTests.swift b/Tests/Actions Tests/Redirect/RedirectComponentTests.swift index ba6258a3ff..b05cd64b8a 100644 --- a/Tests/Actions Tests/Redirect/RedirectComponentTests.swift +++ b/Tests/Actions Tests/Redirect/RedirectComponentTests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2020 Adyen. All rights reserved. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Actions Tests/Redirect/RedirectDetailsTests.swift b/Tests/Actions Tests/Redirect/RedirectDetailsTests.swift index add7af0b20..4bf76c6478 100644 --- a/Tests/Actions Tests/Redirect/RedirectDetailsTests.swift +++ b/Tests/Actions Tests/Redirect/RedirectDetailsTests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Actions Tests/Redirect/RedirectListnerTests.swift b/Tests/Actions Tests/Redirect/RedirectListnerTests.swift index eb370ae8fe..707363d50f 100644 --- a/Tests/Actions Tests/Redirect/RedirectListnerTests.swift +++ b/Tests/Actions Tests/Redirect/RedirectListnerTests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Actions Tests/Voucher/AppleWalletPassProviderTests.swift b/Tests/Actions Tests/Voucher/AppleWalletPassProviderTests.swift index 47e1fca9f8..8cfe65994b 100644 --- a/Tests/Actions Tests/Voucher/AppleWalletPassProviderTests.swift +++ b/Tests/Actions Tests/Voucher/AppleWalletPassProviderTests.swift @@ -1,9 +1,7 @@ // -// AppleWalletPassProviderTests.swift -// AdyenUIKitTests +// Copyright (c) 2024 Adyen N.V. // -// Created by Mohamed Eldoheiri on 6/3/21. -// Copyright © 2021 Adyen. All rights reserved. +// This file is open source and available under the MIT license. See the LICENSE file for more info. // @_spi(AdyenInternal) @testable import Adyen diff --git a/Tests/Actions Tests/Voucher/BoletoVoucherShareableVoucherViewProviderTests.swift b/Tests/Actions Tests/Voucher/BoletoVoucherShareableVoucherViewProviderTests.swift index 890dd87797..38fc4de938 100644 --- a/Tests/Actions Tests/Voucher/BoletoVoucherShareableVoucherViewProviderTests.swift +++ b/Tests/Actions Tests/Voucher/BoletoVoucherShareableVoucherViewProviderTests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Actions Tests/Voucher/DokuVoucherUITests.swift b/Tests/Actions Tests/Voucher/DokuVoucherUITests.swift index ce90621a1b..c496ecbe7b 100644 --- a/Tests/Actions Tests/Voucher/DokuVoucherUITests.swift +++ b/Tests/Actions Tests/Voucher/DokuVoucherUITests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Actions Tests/Voucher/EContextATMShareableVoucherViewProviderTests.swift b/Tests/Actions Tests/Voucher/EContextATMShareableVoucherViewProviderTests.swift index 1ef9dce3ee..f85ac5daae 100644 --- a/Tests/Actions Tests/Voucher/EContextATMShareableVoucherViewProviderTests.swift +++ b/Tests/Actions Tests/Voucher/EContextATMShareableVoucherViewProviderTests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Actions Tests/Voucher/EContextStoresVoucherViewControllerProviderTests.swift b/Tests/Actions Tests/Voucher/EContextStoresVoucherViewControllerProviderTests.swift index 60aa8d0d24..ebba28a907 100644 --- a/Tests/Actions Tests/Voucher/EContextStoresVoucherViewControllerProviderTests.swift +++ b/Tests/Actions Tests/Voucher/EContextStoresVoucherViewControllerProviderTests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Actions Tests/Voucher/MultibancoShareableVoucherViewProviderTests.swift b/Tests/Actions Tests/Voucher/MultibancoShareableVoucherViewProviderTests.swift index c20be696bf..25a0e6e6cf 100644 --- a/Tests/Actions Tests/Voucher/MultibancoShareableVoucherViewProviderTests.swift +++ b/Tests/Actions Tests/Voucher/MultibancoShareableVoucherViewProviderTests.swift @@ -1,9 +1,7 @@ // -// MultibancoShareableVoucherViewProviderTests.swift -// AdyenUIKitTests +// Copyright (c) 2024 Adyen N.V. // -// Created by Mohamed Eldoheiri on 8/27/21. -// Copyright © 2021 Adyen. All rights reserved. +// This file is open source and available under the MIT license. See the LICENSE file for more info. // @_spi(AdyenInternal) import Adyen diff --git a/Tests/Actions Tests/Voucher/OXXOShareableVoucherViewProviderTests.swift b/Tests/Actions Tests/Voucher/OXXOShareableVoucherViewProviderTests.swift index 5ffa9b9074..a276fab8b6 100644 --- a/Tests/Actions Tests/Voucher/OXXOShareableVoucherViewProviderTests.swift +++ b/Tests/Actions Tests/Voucher/OXXOShareableVoucherViewProviderTests.swift @@ -1,9 +1,7 @@ // -// OXXOShareableVoucherViewProviderTests.swift -// AdyenUIKitTests +// Copyright (c) 2024 Adyen N.V. // -// Created by Mohamed Eldoheiri on 8/11/21. -// Copyright © 2021 Adyen. All rights reserved. +// This file is open source and available under the MIT license. See the LICENSE file for more info. // @_spi(AdyenInternal) import Adyen diff --git a/Tests/Actions Tests/Voucher/VoucherComponentTests.swift b/Tests/Actions Tests/Voucher/VoucherComponentTests.swift index 757d793d2d..d1bf8cafa2 100644 --- a/Tests/Actions Tests/Voucher/VoucherComponentTests.swift +++ b/Tests/Actions Tests/Voucher/VoucherComponentTests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Actions Tests/Voucher/VoucherShareableViewProviderMock.swift b/Tests/Actions Tests/Voucher/VoucherShareableViewProviderMock.swift index e4dfbf3832..251a0a9022 100644 --- a/Tests/Actions Tests/Voucher/VoucherShareableViewProviderMock.swift +++ b/Tests/Actions Tests/Voucher/VoucherShareableViewProviderMock.swift @@ -1,9 +1,7 @@ // -// VoucherShareableViewProviderMock.swift -// AdyenUIKitTests +// Copyright (c) 2024 Adyen N.V. // -// Created by Mohamed Eldoheiri on 2/3/21. -// Copyright © 2021 Adyen. All rights reserved. +// This file is open source and available under the MIT license. See the LICENSE file for more info. // @_spi(AdyenInternal) import Adyen diff --git a/Tests/Actions Tests/Voucher/VoucherViewDelegateMock.swift b/Tests/Actions Tests/Voucher/VoucherViewDelegateMock.swift index 4230771bc3..b5156e6c13 100644 --- a/Tests/Actions Tests/Voucher/VoucherViewDelegateMock.swift +++ b/Tests/Actions Tests/Voucher/VoucherViewDelegateMock.swift @@ -1,9 +1,7 @@ // -// VoucherViewDelegateMock.swift -// Adyen +// Copyright (c) 2024 Adyen N.V. // -// Created by Mohamed Eldoheiri on 6/3/21. -// Copyright © 2021 Adyen. All rights reserved. +// This file is open source and available under the MIT license. See the LICENSE file for more info. // @_spi(AdyenInternal) @testable import Adyen diff --git a/Tests/Actions Tests/Voucher/VoucherViewTests.swift b/Tests/Actions Tests/Voucher/VoucherViewTests.swift index 8a64ac5548..ca613bf502 100644 --- a/Tests/Actions Tests/Voucher/VoucherViewTests.swift +++ b/Tests/Actions Tests/Voucher/VoucherViewTests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Adyen Tests/Analytics/AnalyticsEventTests.swift b/Tests/Adyen Tests/Analytics/AnalyticsEventTests.swift index ab309e776e..b7fcaecaf2 100644 --- a/Tests/Adyen Tests/Analytics/AnalyticsEventTests.swift +++ b/Tests/Adyen Tests/Analytics/AnalyticsEventTests.swift @@ -1,9 +1,7 @@ // -// AnalyticsEventTests.swift -// AdyenUIKitTests +// Copyright (c) 2024 Adyen N.V. // -// Created by Naufal Aros on 4/12/22. -// Copyright © 2022 Adyen. All rights reserved. +// This file is open source and available under the MIT license. See the LICENSE file for more info. // import XCTest diff --git a/Tests/Adyen Tests/Analytics/AnalyticsFlavorTests.swift b/Tests/Adyen Tests/Analytics/AnalyticsFlavorTests.swift index 96d0086a9c..b6ee61d96a 100644 --- a/Tests/Adyen Tests/Analytics/AnalyticsFlavorTests.swift +++ b/Tests/Adyen Tests/Analytics/AnalyticsFlavorTests.swift @@ -1,9 +1,7 @@ // -// AnalyticsFlavorTests.swift -// AdyenUIKitTests +// Copyright (c) 2024 Adyen N.V. // -// Created by Naufal Aros on 4/13/22. -// Copyright © 2022 Adyen. All rights reserved. +// This file is open source and available under the MIT license. See the LICENSE file for more info. // import XCTest diff --git a/Tests/Adyen Tests/Analytics/AnalyticsProviderMock.swift b/Tests/Adyen Tests/Analytics/AnalyticsProviderMock.swift index a698df893f..ccc3566d4e 100644 --- a/Tests/Adyen Tests/Analytics/AnalyticsProviderMock.swift +++ b/Tests/Adyen Tests/Analytics/AnalyticsProviderMock.swift @@ -1,9 +1,7 @@ // -// AnalyticsProviderMock.swift -// AdyenUIHost +// Copyright (c) 2024 Adyen N.V. // -// Created by Naufal Aros on 4/11/22. -// Copyright © 2022 Adyen. All rights reserved. +// This file is open source and available under the MIT license. See the LICENSE file for more info. // import Foundation diff --git a/Tests/Adyen Tests/Analytics/AnalyticsProviderTests.swift b/Tests/Adyen Tests/Analytics/AnalyticsProviderTests.swift index 89ef5154ad..86c51f1e78 100644 --- a/Tests/Adyen Tests/Analytics/AnalyticsProviderTests.swift +++ b/Tests/Adyen Tests/Analytics/AnalyticsProviderTests.swift @@ -1,9 +1,7 @@ // -// AnalyticsProviderTests.swift -// Adyen +// Copyright (c) 2024 Adyen N.V. // -// Created by Naufal Aros on 4/11/22. -// Copyright © 2022 Adyen. All rights reserved. +// This file is open source and available under the MIT license. See the LICENSE file for more info. // import XCTest @@ -33,7 +31,7 @@ class AnalyticsProviderTests: XCTestCase { analyticsConfiguration.isEnabled = true let apiClient = APIClientMock() - let sut = AnalyticsProvider(apiClient: apiClient, + let sut = AnalyticsProvider(apiClient: apiClient, configuration: analyticsConfiguration, eventDataSource: eventDataSource) @@ -270,7 +268,7 @@ class AnalyticsProviderTests: XCTestCase { let expectedId = infoEvent.id apiClient.onExecute = { request in if let analyticsRequest = request as? AnalyticsRequest, - let capturedId = analyticsRequest.infos.first?.id { + let capturedId = analyticsRequest.infos.first?.id { XCTAssertEqual(capturedId, expectedId, "Expected event ID does not match the sent event id") shouldSendExpectation.fulfill() } @@ -283,8 +281,8 @@ class AnalyticsProviderTests: XCTestCase { func testDeinitShouldAttemptToSendEvents() { let apiClient = APIClientMock() var sut: AnalyticsProvider? = AnalyticsProvider(apiClient: apiClient, - configuration: AnalyticsConfiguration(), - eventDataSource: eventDataSource) + configuration: AnalyticsConfiguration(), + eventDataSource: eventDataSource) let initialAnalyticsResponse = InitialAnalyticsResponse(checkoutAttemptId: checkoutAttemptIdMockValue) let checkoutAttemptIdResult: Result = .success(initialAnalyticsResponse) diff --git a/Tests/Adyen Tests/Assets/AssetsAccessTests.swift b/Tests/Adyen Tests/Assets/AssetsAccessTests.swift index 5a34fc7b9c..72eb4f5d2b 100644 --- a/Tests/Adyen Tests/Assets/AssetsAccessTests.swift +++ b/Tests/Adyen Tests/Assets/AssetsAccessTests.swift @@ -1,9 +1,7 @@ // -// AssetsAccessTests.swift -// AdyenUIKitTests +// Copyright (c) 2024 Adyen N.V. // -// Created by Mohamed Eldoheiri on 12/24/20. -// Copyright © 2020 Adyen. All rights reserved. +// This file is open source and available under the MIT license. See the LICENSE file for more info. // @_spi(AdyenInternal) @testable import Adyen diff --git a/Tests/Adyen Tests/Core/APIContextTests.swift b/Tests/Adyen Tests/Core/APIContextTests.swift index 31e3eeace0..77566fdcd0 100644 --- a/Tests/Adyen Tests/Core/APIContextTests.swift +++ b/Tests/Adyen Tests/Core/APIContextTests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Adyen Tests/Core/ActionTests.swift b/Tests/Adyen Tests/Core/ActionTests.swift index e848f376d3..27a0080d2d 100644 --- a/Tests/Adyen Tests/Core/ActionTests.swift +++ b/Tests/Adyen Tests/Core/ActionTests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Adyen Tests/Core/AdyenContextTests.swift b/Tests/Adyen Tests/Core/AdyenContextTests.swift index 7cdfad7dbb..866cc8cfe5 100644 --- a/Tests/Adyen Tests/Core/AdyenContextTests.swift +++ b/Tests/Adyen Tests/Core/AdyenContextTests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Adyen Tests/Core/BackoffSchedulerTests.swift b/Tests/Adyen Tests/Core/BackoffSchedulerTests.swift index 60d1950a80..ac8046cf8b 100644 --- a/Tests/Adyen Tests/Core/BackoffSchedulerTests.swift +++ b/Tests/Adyen Tests/Core/BackoffSchedulerTests.swift @@ -1,9 +1,7 @@ // -// BackoffSchedulerTests.swift -// AdyenTests +// Copyright (c) 2024 Adyen N.V. // -// Created by Mohamed Eldoheiri on 8/11/20. -// Copyright © 2020 Adyen. All rights reserved. +// This file is open source and available under the MIT license. See the LICENSE file for more info. // @_spi(AdyenInternal) @testable import Adyen diff --git a/Tests/Adyen Tests/Core/BankDetailsEncryptorTests.swift b/Tests/Adyen Tests/Core/BankDetailsEncryptorTests.swift index 628c235195..173a2f2339 100644 --- a/Tests/Adyen Tests/Core/BankDetailsEncryptorTests.swift +++ b/Tests/Adyen Tests/Core/BankDetailsEncryptorTests.swift @@ -1,9 +1,7 @@ // -// BankDetailsEncryptorTests.swift -// AdyenUIKitTests +// Copyright (c) 2024 Adyen N.V. // -// Created by Eren Besel on 1/19/22. -// Copyright © 2022 Adyen. All rights reserved. +// This file is open source and available under the MIT license. See the LICENSE file for more info. // @testable @_spi(AdyenInternal) import AdyenCard diff --git a/Tests/Adyen Tests/Core/BrowserInfoTests.swift b/Tests/Adyen Tests/Core/BrowserInfoTests.swift index 69856788d5..13da3ec46a 100644 --- a/Tests/Adyen Tests/Core/BrowserInfoTests.swift +++ b/Tests/Adyen Tests/Core/BrowserInfoTests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2020 Adyen. All rights reserved. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Adyen Tests/Core/PaymentMethodTests.swift b/Tests/Adyen Tests/Core/PaymentMethodTests.swift index bcfee78430..f2b55d9319 100644 --- a/Tests/Adyen Tests/Core/PaymentMethodTests.swift +++ b/Tests/Adyen Tests/Core/PaymentMethodTests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Adyen Tests/Core/SimpleSchedulerTests.swift b/Tests/Adyen Tests/Core/SimpleSchedulerTests.swift index c0de57215e..76131f23a3 100644 --- a/Tests/Adyen Tests/Core/SimpleSchedulerTests.swift +++ b/Tests/Adyen Tests/Core/SimpleSchedulerTests.swift @@ -1,9 +1,7 @@ // -// SimpleSchedulerTests.swift -// AdyenTests +// Copyright (c) 2024 Adyen N.V. // -// Created by Mohamed Eldoheiri on 8/11/20. -// Copyright © 2020 Adyen. All rights reserved. +// This file is open source and available under the MIT license. See the LICENSE file for more info. // @_spi(AdyenInternal) @testable import Adyen diff --git a/Tests/Adyen Tests/Extension/KeyedDecodingContainerExtensionsTests.swift b/Tests/Adyen Tests/Extension/KeyedDecodingContainerExtensionsTests.swift index 942aa96331..2b528a1dc8 100644 --- a/Tests/Adyen Tests/Extension/KeyedDecodingContainerExtensionsTests.swift +++ b/Tests/Adyen Tests/Extension/KeyedDecodingContainerExtensionsTests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Adyen Tests/Extension/StringExtensionsTests.swift b/Tests/Adyen Tests/Extension/StringExtensionsTests.swift index 7d1c1fb88f..c729b192df 100644 --- a/Tests/Adyen Tests/Extension/StringExtensionsTests.swift +++ b/Tests/Adyen Tests/Extension/StringExtensionsTests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Adyen Tests/Extension/TimeIntervalExtensionsTests.swift b/Tests/Adyen Tests/Extension/TimeIntervalExtensionsTests.swift index 00e1071b5d..bcd903e60f 100644 --- a/Tests/Adyen Tests/Extension/TimeIntervalExtensionsTests.swift +++ b/Tests/Adyen Tests/Extension/TimeIntervalExtensionsTests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2019 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Adyen Tests/Extension/UIButtonHelpersTests.swift b/Tests/Adyen Tests/Extension/UIButtonHelpersTests.swift index ace6a70338..e9dad6b726 100644 --- a/Tests/Adyen Tests/Extension/UIButtonHelpersTests.swift +++ b/Tests/Adyen Tests/Extension/UIButtonHelpersTests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Adyen Tests/Extension/UILabelHelpersTests.swift b/Tests/Adyen Tests/Extension/UILabelHelpersTests.swift index 08ac733b53..6dd1cacb53 100644 --- a/Tests/Adyen Tests/Extension/UILabelHelpersTests.swift +++ b/Tests/Adyen Tests/Extension/UILabelHelpersTests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Adyen Tests/Extension/URLExtensionsTest.swift b/Tests/Adyen Tests/Extension/URLExtensionsTest.swift index 6babbd87de..188721fbfd 100644 --- a/Tests/Adyen Tests/Extension/URLExtensionsTest.swift +++ b/Tests/Adyen Tests/Extension/URLExtensionsTest.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Adyen Tests/Mocks/APIClientMock.swift b/Tests/Adyen Tests/Mocks/APIClientMock.swift index eff6e7da57..d144f0372e 100644 --- a/Tests/Adyen Tests/Mocks/APIClientMock.swift +++ b/Tests/Adyen Tests/Mocks/APIClientMock.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Adyen Tests/Mocks/ActionHandlingComponentMock.swift b/Tests/Adyen Tests/Mocks/ActionHandlingComponentMock.swift index b3a62dc82b..1338467461 100644 --- a/Tests/Adyen Tests/Mocks/ActionHandlingComponentMock.swift +++ b/Tests/Adyen Tests/Mocks/ActionHandlingComponentMock.swift @@ -1,9 +1,7 @@ // -// ActionHandlingComponentMock.swift -// AdyenUIKitTests +// Copyright (c) 2024 Adyen N.V. // -// Created by Mohamed Eldoheiri on 3/11/22. -// Copyright © 2022 Adyen. All rights reserved. +// This file is open source and available under the MIT license. See the LICENSE file for more info. // import Foundation diff --git a/Tests/Adyen Tests/Mocks/AppLauncherMock.swift b/Tests/Adyen Tests/Mocks/AppLauncherMock.swift index 1bd221f57d..a6868ab9b9 100644 --- a/Tests/Adyen Tests/Mocks/AppLauncherMock.swift +++ b/Tests/Adyen Tests/Mocks/AppLauncherMock.swift @@ -1,5 +1,5 @@ // -// Copyright © 2020 Adyen. All rights reserved. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Adyen Tests/Mocks/CardPaymentMethodMock.swift b/Tests/Adyen Tests/Mocks/CardPaymentMethodMock.swift index 9376ca21c0..5db216c4e9 100644 --- a/Tests/Adyen Tests/Mocks/CardPaymentMethodMock.swift +++ b/Tests/Adyen Tests/Mocks/CardPaymentMethodMock.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Adyen Tests/Mocks/FormatterMock.swift b/Tests/Adyen Tests/Mocks/FormatterMock.swift index ccb742b3c4..b8f90512fe 100644 --- a/Tests/Adyen Tests/Mocks/FormatterMock.swift +++ b/Tests/Adyen Tests/Mocks/FormatterMock.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Adyen Tests/Mocks/IntervalCalculatorMock.swift b/Tests/Adyen Tests/Mocks/IntervalCalculatorMock.swift index f190bc8aa3..2daa08064a 100644 --- a/Tests/Adyen Tests/Mocks/IntervalCalculatorMock.swift +++ b/Tests/Adyen Tests/Mocks/IntervalCalculatorMock.swift @@ -1,9 +1,7 @@ // -// IntervalCalculatorMock.swift -// AdyenTests +// Copyright (c) 2024 Adyen N.V. // -// Created by Mohamed Eldoheiri on 8/11/20. -// Copyright © 2020 Adyen. All rights reserved. +// This file is open source and available under the MIT license. See the LICENSE file for more info. // @_spi(AdyenInternal) @testable import Adyen diff --git a/Tests/Adyen Tests/Mocks/MockAddressLookupProvider.swift b/Tests/Adyen Tests/Mocks/MockAddressLookupProvider.swift index e9c85754fe..c6a6803e06 100644 --- a/Tests/Adyen Tests/Mocks/MockAddressLookupProvider.swift +++ b/Tests/Adyen Tests/Mocks/MockAddressLookupProvider.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Adyen Tests/Mocks/PaymentComponentDelegateMock.swift b/Tests/Adyen Tests/Mocks/PaymentComponentDelegateMock.swift index 011315504c..a2f14e3883 100644 --- a/Tests/Adyen Tests/Mocks/PaymentComponentDelegateMock.swift +++ b/Tests/Adyen Tests/Mocks/PaymentComponentDelegateMock.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Adyen Tests/Mocks/PaymentComponentMock.swift b/Tests/Adyen Tests/Mocks/PaymentComponentMock.swift index d386ba8c60..435d20a229 100644 --- a/Tests/Adyen Tests/Mocks/PaymentComponentMock.swift +++ b/Tests/Adyen Tests/Mocks/PaymentComponentMock.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Adyen Tests/Mocks/PaymentMethodMock.swift b/Tests/Adyen Tests/Mocks/PaymentMethodMock.swift index d0809af8c2..25bfc45575 100644 --- a/Tests/Adyen Tests/Mocks/PaymentMethodMock.swift +++ b/Tests/Adyen Tests/Mocks/PaymentMethodMock.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Adyen Tests/Mocks/PresentationDelegateMock.swift b/Tests/Adyen Tests/Mocks/PresentationDelegateMock.swift index 4252349dd5..01eba76107 100644 --- a/Tests/Adyen Tests/Mocks/PresentationDelegateMock.swift +++ b/Tests/Adyen Tests/Mocks/PresentationDelegateMock.swift @@ -1,4 +1,8 @@ // +// Copyright (c) 2024 Adyen N.V. +// +// This file is open source and available under the MIT license. See the LICENSE file for more info. +// @_spi(AdyenInternal) import Adyen @testable import AdyenDropIn diff --git a/Tests/Adyen Tests/Mocks/PresentingViewControllerMock.swift b/Tests/Adyen Tests/Mocks/PresentingViewControllerMock.swift index 2b59a127d2..0f2cc56169 100644 --- a/Tests/Adyen Tests/Mocks/PresentingViewControllerMock.swift +++ b/Tests/Adyen Tests/Mocks/PresentingViewControllerMock.swift @@ -1,5 +1,5 @@ // -// Copyright © 2020 Adyen. All rights reserved. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Adyen Tests/Mocks/StoredPaymentMethodMock.swift b/Tests/Adyen Tests/Mocks/StoredPaymentMethodMock.swift index 658599fd23..979b58c4fe 100644 --- a/Tests/Adyen Tests/Mocks/StoredPaymentMethodMock.swift +++ b/Tests/Adyen Tests/Mocks/StoredPaymentMethodMock.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Adyen Tests/Mocks/ValidatorMock.swift b/Tests/Adyen Tests/Mocks/ValidatorMock.swift index a41be3b0c5..ac4f154c8f 100644 --- a/Tests/Adyen Tests/Mocks/ValidatorMock.swift +++ b/Tests/Adyen Tests/Mocks/ValidatorMock.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Adyen Tests/UI/Form/FormItems/Address/AddressViewModelTests.swift b/Tests/Adyen Tests/UI/Form/FormItems/Address/AddressViewModelTests.swift index 33e373de3c..1f5fc32c16 100644 --- a/Tests/Adyen Tests/UI/Form/FormItems/Address/AddressViewModelTests.swift +++ b/Tests/Adyen Tests/UI/Form/FormItems/Address/AddressViewModelTests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Adyen Tests/UI/Form/FormItems/Address/FormAddressItemTests.swift b/Tests/Adyen Tests/UI/Form/FormItems/Address/FormAddressItemTests.swift index ac85b54f65..af2ec33462 100644 --- a/Tests/Adyen Tests/UI/Form/FormItems/Address/FormAddressItemTests.swift +++ b/Tests/Adyen Tests/UI/Form/FormItems/Address/FormAddressItemTests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Adyen Tests/UI/Form/FormItems/Address/FormAddressPickerItemTests.swift b/Tests/Adyen Tests/UI/Form/FormItems/Address/FormAddressPickerItemTests.swift index f7d6e78fca..8324f13965 100644 --- a/Tests/Adyen Tests/UI/Form/FormItems/Address/FormAddressPickerItemTests.swift +++ b/Tests/Adyen Tests/UI/Form/FormItems/Address/FormAddressPickerItemTests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Adyen Tests/UI/Form/FormItems/Error Item/FormErrorItemTests.swift b/Tests/Adyen Tests/UI/Form/FormItems/Error Item/FormErrorItemTests.swift index ee066e40f2..f177cec4c2 100644 --- a/Tests/Adyen Tests/UI/Form/FormItems/Error Item/FormErrorItemTests.swift +++ b/Tests/Adyen Tests/UI/Form/FormItems/Error Item/FormErrorItemTests.swift @@ -1,9 +1,7 @@ // -// FormErrorItemTests.swift -// AdyenUIKitTests +// Copyright (c) 2024 Adyen N.V. // -// Created by Mohamed Eldoheiri on 4/19/21. -// Copyright © 2021 Adyen. All rights reserved. +// This file is open source and available under the MIT license. See the LICENSE file for more info. // @_spi(AdyenInternal) @testable import Adyen diff --git a/Tests/Adyen Tests/UI/Form/FormItems/Picker/FormPickerItemTests.swift b/Tests/Adyen Tests/UI/Form/FormItems/Picker/FormPickerItemTests.swift index 97015ca731..1cf3b96f2e 100644 --- a/Tests/Adyen Tests/UI/Form/FormItems/Picker/FormPickerItemTests.swift +++ b/Tests/Adyen Tests/UI/Form/FormItems/Picker/FormPickerItemTests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Adyen Tests/UI/Form/FormItems/Selectable/FormSelectableItemViewTests.swift b/Tests/Adyen Tests/UI/Form/FormItems/Selectable/FormSelectableItemViewTests.swift index 17e2968a0c..e56a8b690c 100644 --- a/Tests/Adyen Tests/UI/Form/FormItems/Selectable/FormSelectableItemViewTests.swift +++ b/Tests/Adyen Tests/UI/Form/FormItems/Selectable/FormSelectableItemViewTests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Adyen Tests/UI/Form/FormItems/Text/FormTextItemViewDelegateMock.swift b/Tests/Adyen Tests/UI/Form/FormItems/Text/FormTextItemViewDelegateMock.swift index 0bea095845..6d752fd5a0 100644 --- a/Tests/Adyen Tests/UI/Form/FormItems/Text/FormTextItemViewDelegateMock.swift +++ b/Tests/Adyen Tests/UI/Form/FormItems/Text/FormTextItemViewDelegateMock.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Adyen Tests/UI/Form/FormItems/Text/FormTextItemViewTests.swift b/Tests/Adyen Tests/UI/Form/FormItems/Text/FormTextItemViewTests.swift index 66b6851fc6..4364bc0ec4 100644 --- a/Tests/Adyen Tests/UI/Form/FormItems/Text/FormTextItemViewTests.swift +++ b/Tests/Adyen Tests/UI/Form/FormItems/Text/FormTextItemViewTests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Adyen Tests/UI/Form/FormItems/Validatable/FormValidatableItemViewTests.swift b/Tests/Adyen Tests/UI/Form/FormItems/Validatable/FormValidatableItemViewTests.swift index af8d0f7696..55818944e8 100644 --- a/Tests/Adyen Tests/UI/Form/FormItems/Validatable/FormValidatableItemViewTests.swift +++ b/Tests/Adyen Tests/UI/Form/FormItems/Validatable/FormValidatableItemViewTests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Adyen Tests/UI/View Controllers/AddressInputFormViewControllerTests.swift b/Tests/Adyen Tests/UI/View Controllers/AddressInputFormViewControllerTests.swift index 4fe70f7471..0c96d82160 100644 --- a/Tests/Adyen Tests/UI/View Controllers/AddressInputFormViewControllerTests.swift +++ b/Tests/Adyen Tests/UI/View Controllers/AddressInputFormViewControllerTests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Adyen Tests/UI/View Controllers/AddressLookupViewControllerTests.swift b/Tests/Adyen Tests/UI/View Controllers/AddressLookupViewControllerTests.swift index 776c8dbe20..476f0d34f5 100644 --- a/Tests/Adyen Tests/UI/View Controllers/AddressLookupViewControllerTests.swift +++ b/Tests/Adyen Tests/UI/View Controllers/AddressLookupViewControllerTests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Adyen Tests/UI/View Controllers/FormPickerSearchViewControllerTests.swift b/Tests/Adyen Tests/UI/View Controllers/FormPickerSearchViewControllerTests.swift index 78dc24de66..18c6cc57dc 100644 --- a/Tests/Adyen Tests/UI/View Controllers/FormPickerSearchViewControllerTests.swift +++ b/Tests/Adyen Tests/UI/View Controllers/FormPickerSearchViewControllerTests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Adyen Tests/UI/View Controllers/SearchViewControllerTests.swift b/Tests/Adyen Tests/UI/View Controllers/SearchViewControllerTests.swift index 47c8441b13..b1a20d06fc 100644 --- a/Tests/Adyen Tests/UI/View Controllers/SearchViewControllerTests.swift +++ b/Tests/Adyen Tests/UI/View Controllers/SearchViewControllerTests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Adyen Tests/UI/Views/LinkTextViewTests.swift b/Tests/Adyen Tests/UI/Views/LinkTextViewTests.swift index 5c53a2205b..02643c3832 100644 --- a/Tests/Adyen Tests/UI/Views/LinkTextViewTests.swift +++ b/Tests/Adyen Tests/UI/Views/LinkTextViewTests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Adyen Tests/UI/Views/LoadingViewTests.swift b/Tests/Adyen Tests/UI/Views/LoadingViewTests.swift index a56646ddfb..709f9c9baa 100644 --- a/Tests/Adyen Tests/UI/Views/LoadingViewTests.swift +++ b/Tests/Adyen Tests/UI/Views/LoadingViewTests.swift @@ -1,9 +1,7 @@ // -// LoadingViewTests.swift -// AdyenUIKitTests +// Copyright (c) 2024 Adyen N.V. // -// Created by Mohamed Eldoheiri on 6/16/21. -// Copyright © 2021 Adyen. All rights reserved. +// This file is open source and available under the MIT license. See the LICENSE file for more info. // @_spi(AdyenInternal) @testable import Adyen diff --git a/Tests/Adyen Tests/Utilities/AdyenCoderTests.swift b/Tests/Adyen Tests/Utilities/AdyenCoderTests.swift index 9a23dcf31e..d9565e4520 100644 --- a/Tests/Adyen Tests/Utilities/AdyenCoderTests.swift +++ b/Tests/Adyen Tests/Utilities/AdyenCoderTests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Adyen Tests/Utilities/AmountFormatterTests.swift b/Tests/Adyen Tests/Utilities/AmountFormatterTests.swift index b84cde351c..c043a3a590 100644 --- a/Tests/Adyen Tests/Utilities/AmountFormatterTests.swift +++ b/Tests/Adyen Tests/Utilities/AmountFormatterTests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2020 Adyen. All rights reserved. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Adyen Tests/Utilities/AssertsTests.swift b/Tests/Adyen Tests/Utilities/AssertsTests.swift index 78b18eeb30..c9740362bd 100644 --- a/Tests/Adyen Tests/Utilities/AssertsTests.swift +++ b/Tests/Adyen Tests/Utilities/AssertsTests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Adyen Tests/Utilities/BalanceCheckerTests.swift b/Tests/Adyen Tests/Utilities/BalanceCheckerTests.swift index 09f664dccf..4598d2b238 100644 --- a/Tests/Adyen Tests/Utilities/BalanceCheckerTests.swift +++ b/Tests/Adyen Tests/Utilities/BalanceCheckerTests.swift @@ -1,9 +1,7 @@ // -// BalanceCheckerTests.swift -// AdyenUIKitTests +// Copyright (c) 2024 Adyen N.V. // -// Created by Mohamed Eldoheiri on 4/22/21. -// Copyright © 2021 Adyen. All rights reserved. +// This file is open source and available under the MIT license. See the LICENSE file for more info. // @_spi(AdyenInternal) @testable import Adyen diff --git a/Tests/Adyen Tests/Utilities/DateValidationTests.swift b/Tests/Adyen Tests/Utilities/DateValidationTests.swift index 239abe6d52..43cc58274e 100644 --- a/Tests/Adyen Tests/Utilities/DateValidationTests.swift +++ b/Tests/Adyen Tests/Utilities/DateValidationTests.swift @@ -1,9 +1,7 @@ // -// DateValidationTests.swift -// AdyenUIKitTests +// Copyright (c) 2024 Adyen N.V. // -// Created by Vladimir Abramichev on 30/07/2021. -// Copyright © 2021 Adyen. All rights reserved. +// This file is open source and available under the MIT license. See the LICENSE file for more info. // import Foundation diff --git a/Tests/Adyen Tests/Utilities/KeyboardObserverTests.swift b/Tests/Adyen Tests/Utilities/KeyboardObserverTests.swift index e3e5458740..31fd8d8a88 100644 --- a/Tests/Adyen Tests/Utilities/KeyboardObserverTests.swift +++ b/Tests/Adyen Tests/Utilities/KeyboardObserverTests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Adyen Tests/Utilities/LazyOptionalTests.swift b/Tests/Adyen Tests/Utilities/LazyOptionalTests.swift index 2ad40850a4..4478428e71 100644 --- a/Tests/Adyen Tests/Utilities/LazyOptionalTests.swift +++ b/Tests/Adyen Tests/Utilities/LazyOptionalTests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2020 Adyen. All rights reserved. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Adyen Tests/Utilities/LengthValidatorTests.swift b/Tests/Adyen Tests/Utilities/LengthValidatorTests.swift index c32284a2b1..8596ed12be 100644 --- a/Tests/Adyen Tests/Utilities/LengthValidatorTests.swift +++ b/Tests/Adyen Tests/Utilities/LengthValidatorTests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Adyen Tests/Utilities/LocalizationTests.swift b/Tests/Adyen Tests/Utilities/LocalizationTests.swift index 5550f184fa..0e06f95f45 100644 --- a/Tests/Adyen Tests/Utilities/LocalizationTests.swift +++ b/Tests/Adyen Tests/Utilities/LocalizationTests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2020 Adyen. All rights reserved. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Adyen Tests/Utilities/LogoGeneratorTests.swift b/Tests/Adyen Tests/Utilities/LogoGeneratorTests.swift index c187699667..19b2c61995 100644 --- a/Tests/Adyen Tests/Utilities/LogoGeneratorTests.swift +++ b/Tests/Adyen Tests/Utilities/LogoGeneratorTests.swift @@ -1,9 +1,7 @@ // -// LogoGeneratorTests.swift -// Adyen +// Copyright (c) 2024 Adyen N.V. // -// Created by Vladimir Abramichev on 17/02/2021. -// Copyright © 2021 Adyen. All rights reserved. +// This file is open source and available under the MIT license. See the LICENSE file for more info. // @_spi(AdyenInternal) @testable import Adyen diff --git a/Tests/Adyen Tests/Utilities/ObservableTests.swift b/Tests/Adyen Tests/Utilities/ObservableTests.swift index ccf1bcaac5..2634e557fb 100644 --- a/Tests/Adyen Tests/Utilities/ObservableTests.swift +++ b/Tests/Adyen Tests/Utilities/ObservableTests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Adyen Tests/Utilities/PhoneExtensionsRepositoryTests.swift b/Tests/Adyen Tests/Utilities/PhoneExtensionsRepositoryTests.swift index 4b0509ed71..f3d417eb3d 100644 --- a/Tests/Adyen Tests/Utilities/PhoneExtensionsRepositoryTests.swift +++ b/Tests/Adyen Tests/Utilities/PhoneExtensionsRepositoryTests.swift @@ -1,9 +1,7 @@ // -// PhoneExtensionsRepositoryTests.swift -// AdyenUIKitTests +// Copyright (c) 2024 Adyen N.V. // -// Created by Mohamed Eldoheiri on 1/5/21. -// Copyright © 2021 Adyen. All rights reserved. +// This file is open source and available under the MIT license. See the LICENSE file for more info. // @_spi(AdyenInternal) @testable import Adyen diff --git a/Tests/AdyenSwiftUI Tests/AdyenSwiftUITests.swift b/Tests/AdyenSwiftUI Tests/AdyenSwiftUITests.swift index 62303345f0..19f782ad71 100644 --- a/Tests/AdyenSwiftUI Tests/AdyenSwiftUITests.swift +++ b/Tests/AdyenSwiftUI Tests/AdyenSwiftUITests.swift @@ -1,9 +1,7 @@ // -// AdyenSwiftUITests.swift -// AdyenSwiftUITests +// Copyright (c) 2024 Adyen N.V. // -// Created by Mohamed Eldoheiri on 10/7/20. -// Copyright © 2020 Adyen. All rights reserved. +// This file is open source and available under the MIT license. See the LICENSE file for more info. // import XCTest diff --git a/Tests/Card Tests/3DS2 Component/3DS2 Fingerprint Submitter/ThreeDS2FingerprintSubmitterTests.swift b/Tests/Card Tests/3DS2 Component/3DS2 Fingerprint Submitter/ThreeDS2FingerprintSubmitterTests.swift index abe6a8dbb4..23f400e587 100644 --- a/Tests/Card Tests/3DS2 Component/3DS2 Fingerprint Submitter/ThreeDS2FingerprintSubmitterTests.swift +++ b/Tests/Card Tests/3DS2 Component/3DS2 Fingerprint Submitter/ThreeDS2FingerprintSubmitterTests.swift @@ -1,9 +1,7 @@ // -// ThreeDS2FingerprintSubmitterTests.swift -// AdyenTests +// Copyright (c) 2024 Adyen N.V. // -// Created by Mohamed Eldoheiri on 11/4/20. -// Copyright © 2020 Adyen. All rights reserved. +// This file is open source and available under the MIT license. See the LICENSE file for more info. // @_spi(AdyenInternal) @testable import AdyenActions diff --git a/Tests/Card Tests/3DS2 Component/AnyADYServiceMock.swift b/Tests/Card Tests/3DS2 Component/AnyADYServiceMock.swift index 9949942454..4b16e60bef 100644 --- a/Tests/Card Tests/3DS2 Component/AnyADYServiceMock.swift +++ b/Tests/Card Tests/3DS2 Component/AnyADYServiceMock.swift @@ -1,9 +1,7 @@ // -// AnyADYServiceMock.swift -// AdyenTests +// Copyright (c) 2024 Adyen N.V. // -// Created by Mohamed Eldoheiri on 11/4/20. -// Copyright © 2020 Adyen. All rights reserved. +// This file is open source and available under the MIT license. See the LICENSE file for more info. // import Adyen3DS2 diff --git a/Tests/Card Tests/3DS2 Component/AnyRedirectComponentMock.swift b/Tests/Card Tests/3DS2 Component/AnyRedirectComponentMock.swift index a7dd987ced..ed4d76d8b7 100644 --- a/Tests/Card Tests/3DS2 Component/AnyRedirectComponentMock.swift +++ b/Tests/Card Tests/3DS2 Component/AnyRedirectComponentMock.swift @@ -1,9 +1,7 @@ // -// AnyRedirectComponentMock.swift -// AdyenTests +// Copyright (c) 2024 Adyen N.V. // -// Created by Mohamed Eldoheiri on 11/4/20. -// Copyright © 2020 Adyen. All rights reserved. +// This file is open source and available under the MIT license. See the LICENSE file for more info. // @_spi(AdyenInternal) @testable import AdyenActions diff --git a/Tests/Card Tests/3DS2 Component/AnyThreeDS2ActionHandlerMock.swift b/Tests/Card Tests/3DS2 Component/AnyThreeDS2ActionHandlerMock.swift index 08cd9c16fb..3a9047b6bf 100644 --- a/Tests/Card Tests/3DS2 Component/AnyThreeDS2ActionHandlerMock.swift +++ b/Tests/Card Tests/3DS2 Component/AnyThreeDS2ActionHandlerMock.swift @@ -1,9 +1,7 @@ // -// AnyThreeDS2ActionHandlerMock.swift -// AdyenTests +// Copyright (c) 2024 Adyen N.V. // -// Created by Mohamed Eldoheiri on 11/4/20. -// Copyright © 2020 Adyen. All rights reserved. +// This file is open source and available under the MIT license. See the LICENSE file for more info. // @_spi(AdyenInternal) @testable import AdyenActions diff --git a/Tests/Card Tests/3DS2 Component/AnyThreeDS2FingerprintSubmitterMock.swift b/Tests/Card Tests/3DS2 Component/AnyThreeDS2FingerprintSubmitterMock.swift index 451be58868..1881b920c9 100644 --- a/Tests/Card Tests/3DS2 Component/AnyThreeDS2FingerprintSubmitterMock.swift +++ b/Tests/Card Tests/3DS2 Component/AnyThreeDS2FingerprintSubmitterMock.swift @@ -1,9 +1,7 @@ // -// AnyThreeDS2FingerprintSubmitterMock.swift -// AdyenTests +// Copyright (c) 2024 Adyen N.V. // -// Created by Mohamed Eldoheiri on 11/4/20. -// Copyright © 2020 Adyen. All rights reserved. +// This file is open source and available under the MIT license. See the LICENSE file for more info. // @_spi(AdyenInternal) @testable import AdyenActions diff --git a/Tests/Card Tests/3DS2 Component/AuthenticationServiceMock.swift b/Tests/Card Tests/3DS2 Component/AuthenticationServiceMock.swift index 47ba2442a4..fa9e02a117 100644 --- a/Tests/Card Tests/3DS2 Component/AuthenticationServiceMock.swift +++ b/Tests/Card Tests/3DS2 Component/AuthenticationServiceMock.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Card Tests/3DS2 Component/ThreeDS2ClassicActionHandlerTests.swift b/Tests/Card Tests/3DS2 Component/ThreeDS2ClassicActionHandlerTests.swift index ec0ac309e5..a347dd5338 100644 --- a/Tests/Card Tests/3DS2 Component/ThreeDS2ClassicActionHandlerTests.swift +++ b/Tests/Card Tests/3DS2 Component/ThreeDS2ClassicActionHandlerTests.swift @@ -1,9 +1,7 @@ // -// ThreeDS2ClassicActionHandlerTests.swift -// AdyenUIKitTests +// Copyright (c) 2024 Adyen N.V. // -// Created by Mohamed Eldoheiri on 11/27/20. -// Copyright © 2020 Adyen. All rights reserved. +// This file is open source and available under the MIT license. See the LICENSE file for more info. // @_spi(AdyenInternal) @testable import Adyen diff --git a/Tests/Card Tests/3DS2 Component/ThreeDS2CompactActionHandlerTests.swift b/Tests/Card Tests/3DS2 Component/ThreeDS2CompactActionHandlerTests.swift index d958c258d2..3d418f9984 100644 --- a/Tests/Card Tests/3DS2 Component/ThreeDS2CompactActionHandlerTests.swift +++ b/Tests/Card Tests/3DS2 Component/ThreeDS2CompactActionHandlerTests.swift @@ -1,9 +1,7 @@ // -// ThreeDS2CompactActionHandlerTests.swift -// AdyenTests +// Copyright (c) 2024 Adyen N.V. // -// Created by Mohamed Eldoheiri on 11/4/20. -// Copyright © 2020 Adyen. All rights reserved. +// This file is open source and available under the MIT license. See the LICENSE file for more info. // @_spi(AdyenInternal) @testable import Adyen diff --git a/Tests/Card Tests/3DS2 Component/ThreeDS2ComponentTests.swift b/Tests/Card Tests/3DS2 Component/ThreeDS2ComponentTests.swift index cc44c2c0fe..1b626e516e 100644 --- a/Tests/Card Tests/3DS2 Component/ThreeDS2ComponentTests.swift +++ b/Tests/Card Tests/3DS2 Component/ThreeDS2ComponentTests.swift @@ -1,9 +1,7 @@ // -// ThreeDS2ComponentTests.swift -// AdyenTests +// Copyright (c) 2024 Adyen N.V. // -// Created by Mohamed Eldoheiri on 11/4/20. -// Copyright © 2020 Adyen. All rights reserved. +// This file is open source and available under the MIT license. See the LICENSE file for more info. // @_spi(AdyenInternal) @testable import AdyenActions diff --git a/Tests/Card Tests/3DS2 Component/ThreeDS2PlusDACoreActionHandlerTests+Constants.swift b/Tests/Card Tests/3DS2 Component/ThreeDS2PlusDACoreActionHandlerTests+Constants.swift index 2fc6218506..997d2f114f 100644 --- a/Tests/Card Tests/3DS2 Component/ThreeDS2PlusDACoreActionHandlerTests+Constants.swift +++ b/Tests/Card Tests/3DS2 Component/ThreeDS2PlusDACoreActionHandlerTests+Constants.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Card Tests/3DS2 Component/ThreeDS2PlusDACoreActionHandlerTests.swift b/Tests/Card Tests/3DS2 Component/ThreeDS2PlusDACoreActionHandlerTests.swift index 9f6ffe52fc..c57de0efb4 100644 --- a/Tests/Card Tests/3DS2 Component/ThreeDS2PlusDACoreActionHandlerTests.swift +++ b/Tests/Card Tests/3DS2 Component/ThreeDS2PlusDACoreActionHandlerTests.swift @@ -1,9 +1,7 @@ // -// ThreeDS2PlusDACoreActionHandlerTests.swift -// AdyenUIKitTests +// Copyright (c) 2024 Adyen N.V. // -// Created by Mohamed Eldoheiri on 12/09/2022. -// Copyright © 2022 Adyen. All rights reserved. +// This file is open source and available under the MIT license. See the LICENSE file for more info. // import XCTest diff --git a/Tests/Card Tests/3DS2 Component/ThreeDSResultExtension.swift b/Tests/Card Tests/3DS2 Component/ThreeDSResultExtension.swift index fbb8a7d24b..b7dc9bab89 100644 --- a/Tests/Card Tests/3DS2 Component/ThreeDSResultExtension.swift +++ b/Tests/Card Tests/3DS2 Component/ThreeDSResultExtension.swift @@ -1,9 +1,7 @@ // -// ThreeDSResultExtension.swift -// AdyenUIKitTests +// Copyright (c) 2024 Adyen N.V. // -// Created by Mohamed Eldoheiri on 22/12/2022. -// Copyright © 2022 Adyen. All rights reserved. +// This file is open source and available under the MIT license. See the LICENSE file for more info. // @_spi(AdyenInternal) @testable import AdyenActions diff --git a/Tests/Card Tests/BCMCComponentTests.swift b/Tests/Card Tests/BCMCComponentTests.swift index 743c7c0cf3..d2c207330b 100644 --- a/Tests/Card Tests/BCMCComponentTests.swift +++ b/Tests/Card Tests/BCMCComponentTests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Card Tests/CardComponentTests.swift b/Tests/Card Tests/CardComponentTests.swift index 00dd86f233..0594d80f8b 100644 --- a/Tests/Card Tests/CardComponentTests.swift +++ b/Tests/Card Tests/CardComponentTests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Card Tests/CardDetailsTests.swift b/Tests/Card Tests/CardDetailsTests.swift index 0a1ae485c1..88c2cf27d4 100644 --- a/Tests/Card Tests/CardDetailsTests.swift +++ b/Tests/Card Tests/CardDetailsTests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2020 Adyen. All rights reserved. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Card Tests/CardNumbers.swift b/Tests/Card Tests/CardNumbers.swift index bd6bab8a08..34e9f5ad05 100644 --- a/Tests/Card Tests/CardNumbers.swift +++ b/Tests/Card Tests/CardNumbers.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Card Tests/CardPublicKeyProviderTests.swift b/Tests/Card Tests/CardPublicKeyProviderTests.swift index f432e1e9ac..8f6fa0ac22 100644 --- a/Tests/Card Tests/CardPublicKeyProviderTests.swift +++ b/Tests/Card Tests/CardPublicKeyProviderTests.swift @@ -1,9 +1,7 @@ // -// CardPublicKeyProviderTests.swift -// AdyenTests +// Copyright (c) 2024 Adyen N.V. // -// Created by Mohamed Eldoheiri on 8/17/20. -// Copyright © 2020 Adyen. All rights reserved. +// This file is open source and available under the MIT license. See the LICENSE file for more info. // @_spi(AdyenInternal) @testable import Adyen diff --git a/Tests/Card Tests/Formatters/BrazilSocialSecurityNumberFormatterTests.swift b/Tests/Card Tests/Formatters/BrazilSocialSecurityNumberFormatterTests.swift index 63c4ddef62..ed4f4cc0a6 100644 --- a/Tests/Card Tests/Formatters/BrazilSocialSecurityNumberFormatterTests.swift +++ b/Tests/Card Tests/Formatters/BrazilSocialSecurityNumberFormatterTests.swift @@ -1,9 +1,7 @@ // -// BrazilSocialSecurityNumberFormatterTests.swift -// AdyenUIKitTests +// Copyright (c) 2024 Adyen N.V. // -// Created by Eren Besel on 7/19/21. -// Copyright © 2021 Adyen. All rights reserved. +// This file is open source and available under the MIT license. See the LICENSE file for more info. // @testable @_spi(AdyenInternal) import AdyenCard diff --git a/Tests/Card Tests/Formatters/CardExpiryDateFormatterTests.swift b/Tests/Card Tests/Formatters/CardExpiryDateFormatterTests.swift index 908ebcdb89..712932389f 100644 --- a/Tests/Card Tests/Formatters/CardExpiryDateFormatterTests.swift +++ b/Tests/Card Tests/Formatters/CardExpiryDateFormatterTests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Card Tests/Formatters/CardNumberFormatterTests.swift b/Tests/Card Tests/Formatters/CardNumberFormatterTests.swift index 4625b1f558..2f83beb1ad 100644 --- a/Tests/Card Tests/Formatters/CardNumberFormatterTests.swift +++ b/Tests/Card Tests/Formatters/CardNumberFormatterTests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Card Tests/Formatters/CardSecurityCodeFormatterTests.swift b/Tests/Card Tests/Formatters/CardSecurityCodeFormatterTests.swift index c47f33eb7a..c26a810f7a 100644 --- a/Tests/Card Tests/Formatters/CardSecurityCodeFormatterTests.swift +++ b/Tests/Card Tests/Formatters/CardSecurityCodeFormatterTests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Card Tests/Items/CardNumberItem/FormCardNumberItemTests.swift b/Tests/Card Tests/Items/CardNumberItem/FormCardNumberItemTests.swift index 8a4a5e22fd..8d69f0dbf1 100644 --- a/Tests/Card Tests/Items/CardNumberItem/FormCardNumberItemTests.swift +++ b/Tests/Card Tests/Items/CardNumberItem/FormCardNumberItemTests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Card Tests/Items/CardNumberItem/FormCardNumberItemViewTests.swift b/Tests/Card Tests/Items/CardNumberItem/FormCardNumberItemViewTests.swift index f30e80a0da..84a97f7337 100644 --- a/Tests/Card Tests/Items/CardNumberItem/FormCardNumberItemViewTests.swift +++ b/Tests/Card Tests/Items/CardNumberItem/FormCardNumberItemViewTests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Card Tests/Items/CardNumberItem/FormItemViewBuilderTests.swift b/Tests/Card Tests/Items/CardNumberItem/FormItemViewBuilderTests.swift index 501b3e02ba..6de8af4de3 100644 --- a/Tests/Card Tests/Items/CardNumberItem/FormItemViewBuilderTests.swift +++ b/Tests/Card Tests/Items/CardNumberItem/FormItemViewBuilderTests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2020 Adyen. All rights reserved. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Card Tests/Items/CardSecurityCodeItem/FormCardSecurityCodeItemViewTests.swift b/Tests/Card Tests/Items/CardSecurityCodeItem/FormCardSecurityCodeItemViewTests.swift index ca2164276b..7e213db686 100644 --- a/Tests/Card Tests/Items/CardSecurityCodeItem/FormCardSecurityCodeItemViewTests.swift +++ b/Tests/Card Tests/Items/CardSecurityCodeItem/FormCardSecurityCodeItemViewTests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Card Tests/Mocks/CardComponentDelegateMock.swift b/Tests/Card Tests/Mocks/CardComponentDelegateMock.swift index 0b20fa1d68..f90f2b2aa1 100644 --- a/Tests/Card Tests/Mocks/CardComponentDelegateMock.swift +++ b/Tests/Card Tests/Mocks/CardComponentDelegateMock.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Card Tests/Mocks/CardTypeProviderMock.swift b/Tests/Card Tests/Mocks/CardTypeProviderMock.swift index 47bad03852..5a354b39a0 100644 --- a/Tests/Card Tests/Mocks/CardTypeProviderMock.swift +++ b/Tests/Card Tests/Mocks/CardTypeProviderMock.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Card Tests/Mocks/OpenExternalAppDetector+Mock.swift b/Tests/Card Tests/Mocks/OpenExternalAppDetector+Mock.swift index f0e40c3dfa..45e124f2a8 100644 --- a/Tests/Card Tests/Mocks/OpenExternalAppDetector+Mock.swift +++ b/Tests/Card Tests/Mocks/OpenExternalAppDetector+Mock.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Card Tests/Mocks/PublicKeyProviderMock.swift b/Tests/Card Tests/Mocks/PublicKeyProviderMock.swift index 16bbff7f5a..7dd31e2a40 100644 --- a/Tests/Card Tests/Mocks/PublicKeyProviderMock.swift +++ b/Tests/Card Tests/Mocks/PublicKeyProviderMock.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Card Tests/StoredCardAlertManagerTests.swift b/Tests/Card Tests/StoredCardAlertManagerTests.swift index 7f657030cb..7e14d33433 100644 --- a/Tests/Card Tests/StoredCardAlertManagerTests.swift +++ b/Tests/Card Tests/StoredCardAlertManagerTests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Card Tests/StoredCardComponentTests.swift b/Tests/Card Tests/StoredCardComponentTests.swift index 84fd5fc3a3..2a60b4f8cb 100644 --- a/Tests/Card Tests/StoredCardComponentTests.swift +++ b/Tests/Card Tests/StoredCardComponentTests.swift @@ -1,9 +1,7 @@ // -// StoredCardComponentTests.swift -// AdyenTests +// Copyright (c) 2024 Adyen N.V. // -// Created by Mohamed Eldoheiri on 8/17/20. -// Copyright © 2020 Adyen. All rights reserved. +// This file is open source and available under the MIT license. See the LICENSE file for more info. // @_spi(AdyenInternal) @testable import Adyen diff --git a/Tests/Card Tests/StoredPaymentMethodComponentTests.swift b/Tests/Card Tests/StoredPaymentMethodComponentTests.swift index b8c11b100a..09db98a7ab 100644 --- a/Tests/Card Tests/StoredPaymentMethodComponentTests.swift +++ b/Tests/Card Tests/StoredPaymentMethodComponentTests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Card Tests/Utilities/CardBrandProviderTests.swift b/Tests/Card Tests/Utilities/CardBrandProviderTests.swift index c8baa7bb8a..78d331d008 100644 --- a/Tests/Card Tests/Utilities/CardBrandProviderTests.swift +++ b/Tests/Card Tests/Utilities/CardBrandProviderTests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Card Tests/Utilities/CardEncryptorCardTests.swift b/Tests/Card Tests/Utilities/CardEncryptorCardTests.swift index ee0959828e..3165a58470 100644 --- a/Tests/Card Tests/Utilities/CardEncryptorCardTests.swift +++ b/Tests/Card Tests/Utilities/CardEncryptorCardTests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Card Tests/Utilities/CardTypeDetectorTests.swift b/Tests/Card Tests/Utilities/CardTypeDetectorTests.swift index d4f7d0eb84..e1e2c5dc02 100644 --- a/Tests/Card Tests/Utilities/CardTypeDetectorTests.swift +++ b/Tests/Card Tests/Utilities/CardTypeDetectorTests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Card Tests/Utilities/ThrottlerTests.swift b/Tests/Card Tests/Utilities/ThrottlerTests.swift index 7324a4e2f1..58e03381e9 100644 --- a/Tests/Card Tests/Utilities/ThrottlerTests.swift +++ b/Tests/Card Tests/Utilities/ThrottlerTests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Card Tests/Validators/CardExpiryDateValidatorTests.swift b/Tests/Card Tests/Validators/CardExpiryDateValidatorTests.swift index 22372d7072..812a93e200 100644 --- a/Tests/Card Tests/Validators/CardExpiryDateValidatorTests.swift +++ b/Tests/Card Tests/Validators/CardExpiryDateValidatorTests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Card Tests/Validators/CardNumberValidatorTests.swift b/Tests/Card Tests/Validators/CardNumberValidatorTests.swift index 047565e3d2..7c4fa62b62 100644 --- a/Tests/Card Tests/Validators/CardNumberValidatorTests.swift +++ b/Tests/Card Tests/Validators/CardNumberValidatorTests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Card Tests/Validators/CardPublicKeyValidatorTests.swift b/Tests/Card Tests/Validators/CardPublicKeyValidatorTests.swift index 711d57c18c..55abe4a208 100644 --- a/Tests/Card Tests/Validators/CardPublicKeyValidatorTests.swift +++ b/Tests/Card Tests/Validators/CardPublicKeyValidatorTests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Card Tests/Validators/CardSecurityCodeValidatorTests.swift b/Tests/Card Tests/Validators/CardSecurityCodeValidatorTests.swift index 2c17eddd83..6e79276710 100644 --- a/Tests/Card Tests/Validators/CardSecurityCodeValidatorTests.swift +++ b/Tests/Card Tests/Validators/CardSecurityCodeValidatorTests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Card Tests/Validators/EmailValidatorTests.swift b/Tests/Card Tests/Validators/EmailValidatorTests.swift index 7ebd7f8db5..9d725fdf6b 100644 --- a/Tests/Card Tests/Validators/EmailValidatorTests.swift +++ b/Tests/Card Tests/Validators/EmailValidatorTests.swift @@ -1,9 +1,7 @@ // -// EmailValidatorTests.swift -// AdyenTests +// Copyright (c) 2024 Adyen N.V. // -// Created by Mohamed Eldoheiri on 7/30/20. -// Copyright © 2020 Adyen. All rights reserved. +// This file is open source and available under the MIT license. See the LICENSE file for more info. // @_spi(AdyenInternal) @testable import Adyen diff --git a/Tests/Card Tests/Validators/NumericStringValidatorTests.swift b/Tests/Card Tests/Validators/NumericStringValidatorTests.swift index 29d6d05922..c0552e279f 100644 --- a/Tests/Card Tests/Validators/NumericStringValidatorTests.swift +++ b/Tests/Card Tests/Validators/NumericStringValidatorTests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2020 Adyen. All rights reserved. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Card Tests/Validators/PhoneNumberValidatorTests.swift b/Tests/Card Tests/Validators/PhoneNumberValidatorTests.swift index 2fdd58eac2..258a6dba24 100644 --- a/Tests/Card Tests/Validators/PhoneNumberValidatorTests.swift +++ b/Tests/Card Tests/Validators/PhoneNumberValidatorTests.swift @@ -1,9 +1,7 @@ // -// PhoneNumberValidatorTests.swift -// AdyenTests +// Copyright (c) 2024 Adyen N.V. // -// Created by Mohamed Eldoheiri on 9/29/20. -// Copyright © 2020 Adyen. All rights reserved. +// This file is open source and available under the MIT license. See the LICENSE file for more info. // @_spi(AdyenInternal) @testable import Adyen diff --git a/Tests/Card Tests/Validators/RandomStringGenerator.swift b/Tests/Card Tests/Validators/RandomStringGenerator.swift index 610dc1cd95..0cf0bef4cf 100644 --- a/Tests/Card Tests/Validators/RandomStringGenerator.swift +++ b/Tests/Card Tests/Validators/RandomStringGenerator.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Components Tests/ACH Direct Debit/ACHDirectDebitComponentTests.swift b/Tests/Components Tests/ACH Direct Debit/ACHDirectDebitComponentTests.swift index 30f30db0ea..0fa53d6e1e 100644 --- a/Tests/Components Tests/ACH Direct Debit/ACHDirectDebitComponentTests.swift +++ b/Tests/Components Tests/ACH Direct Debit/ACHDirectDebitComponentTests.swift @@ -1,9 +1,7 @@ // -// ACHDirectDebitComponentTests.swift -// AdyenUIKitTests +// Copyright (c) 2024 Adyen N.V. // -// Created by Eren Besel on 1/19/22. -// Copyright © 2022 Adyen. All rights reserved. +// This file is open source and available under the MIT license. See the LICENSE file for more info. // @_spi(AdyenInternal) @testable import Adyen diff --git a/Tests/Components Tests/Affirm/AffirmComponentTests.swift b/Tests/Components Tests/Affirm/AffirmComponentTests.swift index 7b1c25990b..ddb0feeb16 100644 --- a/Tests/Components Tests/Affirm/AffirmComponentTests.swift +++ b/Tests/Components Tests/Affirm/AffirmComponentTests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Components Tests/Apple Pay/ApplePayComponentTests.swift b/Tests/Components Tests/Apple Pay/ApplePayComponentTests.swift index 845da6c7ad..c4d5490128 100644 --- a/Tests/Components Tests/Apple Pay/ApplePayComponentTests.swift +++ b/Tests/Components Tests/Apple Pay/ApplePayComponentTests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Components Tests/Apple Pay/ApplePayDelegateMock.swift b/Tests/Components Tests/Apple Pay/ApplePayDelegateMock.swift index 57db258d8b..e8b73f1a23 100644 --- a/Tests/Components Tests/Apple Pay/ApplePayDelegateMock.swift +++ b/Tests/Components Tests/Apple Pay/ApplePayDelegateMock.swift @@ -1,9 +1,7 @@ // -// ApplePayDelegateMock.swift -// AdyenUIKitTests +// Copyright (c) 2024 Adyen N.V. // -// Created by Vladimir Abramichev on 05/05/2022. -// Copyright © 2022 Adyen. All rights reserved. +// This file is open source and available under the MIT license. See the LICENSE file for more info. // import AdyenComponents diff --git a/Tests/Components Tests/Apple Pay/ApplePayDetailsTest.swift b/Tests/Components Tests/Apple Pay/ApplePayDetailsTest.swift index 0b96cd3c63..d46c349046 100644 --- a/Tests/Components Tests/Apple Pay/ApplePayDetailsTest.swift +++ b/Tests/Components Tests/Apple Pay/ApplePayDetailsTest.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Components Tests/Apple Pay/PreApplePayComponentTests.swift b/Tests/Components Tests/Apple Pay/PreApplePayComponentTests.swift index 1bea81e1fa..e22e1a88f9 100644 --- a/Tests/Components Tests/Apple Pay/PreApplePayComponentTests.swift +++ b/Tests/Components Tests/Apple Pay/PreApplePayComponentTests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Components Tests/Atome/AtomeComponentTests.swift b/Tests/Components Tests/Atome/AtomeComponentTests.swift index 3210cbc415..8f962233ac 100644 --- a/Tests/Components Tests/Atome/AtomeComponentTests.swift +++ b/Tests/Components Tests/Atome/AtomeComponentTests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Components Tests/BACS Direct Debit/BACSDirectDebitComponentTests.swift b/Tests/Components Tests/BACS Direct Debit/BACSDirectDebitComponentTests.swift index 4c4fcd3375..3dee1a6b29 100644 --- a/Tests/Components Tests/BACS Direct Debit/BACSDirectDebitComponentTests.swift +++ b/Tests/Components Tests/BACS Direct Debit/BACSDirectDebitComponentTests.swift @@ -1,4 +1,8 @@ // +// Copyright (c) 2024 Adyen N.V. +// +// This file is open source and available under the MIT license. See the LICENSE file for more info. +// @_spi(AdyenInternal) @testable import Adyen @testable import AdyenComponents diff --git a/Tests/Components Tests/BACS Direct Debit/DocumentComponentTests.swift b/Tests/Components Tests/BACS Direct Debit/DocumentComponentTests.swift index 4d357a4b7a..0be99f7fb6 100644 --- a/Tests/Components Tests/BACS Direct Debit/DocumentComponentTests.swift +++ b/Tests/Components Tests/BACS Direct Debit/DocumentComponentTests.swift @@ -1,9 +1,7 @@ // -// DocumentComponentTests.swift -// AdyenUIKitTests +// Copyright (c) 2024 Adyen N.V. // -// Created by Eren Besel on 12/15/21. -// Copyright © 2021 Adyen. All rights reserved. +// This file is open source and available under the MIT license. See the LICENSE file for more info. // @_spi(AdyenInternal) @testable import Adyen diff --git a/Tests/Components Tests/BACS Direct Debit/Factories/BACSItemsFactoryTests.swift b/Tests/Components Tests/BACS Direct Debit/Factories/BACSItemsFactoryTests.swift index d49572cc3a..8c9bea2c6d 100644 --- a/Tests/Components Tests/BACS Direct Debit/Factories/BACSItemsFactoryTests.swift +++ b/Tests/Components Tests/BACS Direct Debit/Factories/BACSItemsFactoryTests.swift @@ -1,4 +1,8 @@ // +// Copyright (c) 2024 Adyen N.V. +// +// This file is open source and available under the MIT license. See the LICENSE file for more info. +// @_spi(AdyenInternal) @testable import Adyen @testable import AdyenComponents diff --git a/Tests/Components Tests/BACS Direct Debit/Mocks/BACSConfirmationPresenterProtocolMock.swift b/Tests/Components Tests/BACS Direct Debit/Mocks/BACSConfirmationPresenterProtocolMock.swift index 800c294de3..4ccafd5584 100644 --- a/Tests/Components Tests/BACS Direct Debit/Mocks/BACSConfirmationPresenterProtocolMock.swift +++ b/Tests/Components Tests/BACS Direct Debit/Mocks/BACSConfirmationPresenterProtocolMock.swift @@ -1,4 +1,8 @@ // +// Copyright (c) 2024 Adyen N.V. +// +// This file is open source and available under the MIT license. See the LICENSE file for more info. +// @_spi(AdyenInternal) @testable import Adyen @testable import AdyenComponents diff --git a/Tests/Components Tests/BACS Direct Debit/Mocks/BACSConfirmationViewProtocolMock.swift b/Tests/Components Tests/BACS Direct Debit/Mocks/BACSConfirmationViewProtocolMock.swift index 841809a82f..52e4dad745 100644 --- a/Tests/Components Tests/BACS Direct Debit/Mocks/BACSConfirmationViewProtocolMock.swift +++ b/Tests/Components Tests/BACS Direct Debit/Mocks/BACSConfirmationViewProtocolMock.swift @@ -1,4 +1,8 @@ // +// Copyright (c) 2024 Adyen N.V. +// +// This file is open source and available under the MIT license. See the LICENSE file for more info. +// @_spi(AdyenInternal) @testable import Adyen @testable import AdyenComponents diff --git a/Tests/Components Tests/BACS Direct Debit/Mocks/BACSDirectDebitComponentTrackerProtocolMock.swift b/Tests/Components Tests/BACS Direct Debit/Mocks/BACSDirectDebitComponentTrackerProtocolMock.swift index e6c679716d..8c8a4a3911 100644 --- a/Tests/Components Tests/BACS Direct Debit/Mocks/BACSDirectDebitComponentTrackerProtocolMock.swift +++ b/Tests/Components Tests/BACS Direct Debit/Mocks/BACSDirectDebitComponentTrackerProtocolMock.swift @@ -1,9 +1,7 @@ // -// BACSDirectDebitComponentTrackerProtocolMock.swift -// AdyenUIKitTests +// Copyright (c) 2024 Adyen N.V. // -// Created by Naufal Aros on 12/2/21. -// Copyright © 2021 Adyen. All rights reserved. +// This file is open source and available under the MIT license. See the LICENSE file for more info. // @_spi(AdyenInternal) @testable import Adyen diff --git a/Tests/Components Tests/BACS Direct Debit/Mocks/BACSInputFormViewProtocolMock.swift b/Tests/Components Tests/BACS Direct Debit/Mocks/BACSInputFormViewProtocolMock.swift index a66cd33eba..630f334da3 100644 --- a/Tests/Components Tests/BACS Direct Debit/Mocks/BACSInputFormViewProtocolMock.swift +++ b/Tests/Components Tests/BACS Direct Debit/Mocks/BACSInputFormViewProtocolMock.swift @@ -1,4 +1,8 @@ // +// Copyright (c) 2024 Adyen N.V. +// +// This file is open source and available under the MIT license. See the LICENSE file for more info. +// @_spi(AdyenInternal) @testable import Adyen @testable import AdyenComponents diff --git a/Tests/Components Tests/BACS Direct Debit/Mocks/BACSInputPresenterProtocolMock.swift b/Tests/Components Tests/BACS Direct Debit/Mocks/BACSInputPresenterProtocolMock.swift index aac37587a9..d858190c8f 100644 --- a/Tests/Components Tests/BACS Direct Debit/Mocks/BACSInputPresenterProtocolMock.swift +++ b/Tests/Components Tests/BACS Direct Debit/Mocks/BACSInputPresenterProtocolMock.swift @@ -1,4 +1,8 @@ // +// Copyright (c) 2024 Adyen N.V. +// +// This file is open source and available under the MIT license. See the LICENSE file for more info. +// @_spi(AdyenInternal) @testable import Adyen @testable import AdyenComponents diff --git a/Tests/Components Tests/BACS Direct Debit/Mocks/BACSItemsFactoryProtocolMock.swift b/Tests/Components Tests/BACS Direct Debit/Mocks/BACSItemsFactoryProtocolMock.swift index 150a79496e..16ae7f4102 100644 --- a/Tests/Components Tests/BACS Direct Debit/Mocks/BACSItemsFactoryProtocolMock.swift +++ b/Tests/Components Tests/BACS Direct Debit/Mocks/BACSItemsFactoryProtocolMock.swift @@ -1,4 +1,8 @@ // +// Copyright (c) 2024 Adyen N.V. +// +// This file is open source and available under the MIT license. See the LICENSE file for more info. +// @_spi(AdyenInternal) @testable import Adyen @testable import AdyenComponents diff --git a/Tests/Components Tests/BACS Direct Debit/Mocks/BACSRouterProtocolMock.swift b/Tests/Components Tests/BACS Direct Debit/Mocks/BACSRouterProtocolMock.swift index cab802f14b..dece074d34 100644 --- a/Tests/Components Tests/BACS Direct Debit/Mocks/BACSRouterProtocolMock.swift +++ b/Tests/Components Tests/BACS Direct Debit/Mocks/BACSRouterProtocolMock.swift @@ -1,9 +1,7 @@ // -// BACSRouterProtocolMock.swift -// AdyenUIKitTests +// Copyright (c) 2024 Adyen N.V. // -// Created by Naufal Aros on 12/2/21. -// Copyright © 2021 Adyen. All rights reserved. +// This file is open source and available under the MIT license. See the LICENSE file for more info. // @_spi(AdyenInternal) @testable import Adyen diff --git a/Tests/Components Tests/BACS Direct Debit/Mocks/DocumentActionViewDelegateMock.swift b/Tests/Components Tests/BACS Direct Debit/Mocks/DocumentActionViewDelegateMock.swift index dca864b168..75346c2147 100644 --- a/Tests/Components Tests/BACS Direct Debit/Mocks/DocumentActionViewDelegateMock.swift +++ b/Tests/Components Tests/BACS Direct Debit/Mocks/DocumentActionViewDelegateMock.swift @@ -1,9 +1,7 @@ // -// DocumentActionViewDelegateMock.swift -// AdyenUIKitTests +// Copyright (c) 2024 Adyen N.V. // -// Created by Eren Besel on 12/16/21. -// Copyright © 2021 Adyen. All rights reserved. +// This file is open source and available under the MIT license. See the LICENSE file for more info. // @_spi(AdyenInternal) @testable import Adyen diff --git a/Tests/Components Tests/BACS Direct Debit/Scenes/Confirmation/BACSConfirmationPresenterTests.swift b/Tests/Components Tests/BACS Direct Debit/Scenes/Confirmation/BACSConfirmationPresenterTests.swift index 1221267d49..a5ab67314a 100644 --- a/Tests/Components Tests/BACS Direct Debit/Scenes/Confirmation/BACSConfirmationPresenterTests.swift +++ b/Tests/Components Tests/BACS Direct Debit/Scenes/Confirmation/BACSConfirmationPresenterTests.swift @@ -1,4 +1,8 @@ // +// Copyright (c) 2024 Adyen N.V. +// +// This file is open source and available under the MIT license. See the LICENSE file for more info. +// @_spi(AdyenInternal) @testable import Adyen @testable import AdyenComponents diff --git a/Tests/Components Tests/BACS Direct Debit/Scenes/Confirmation/BACSConfirmationViewControllerTests.swift b/Tests/Components Tests/BACS Direct Debit/Scenes/Confirmation/BACSConfirmationViewControllerTests.swift index 2d26cd8de5..f441198b03 100644 --- a/Tests/Components Tests/BACS Direct Debit/Scenes/Confirmation/BACSConfirmationViewControllerTests.swift +++ b/Tests/Components Tests/BACS Direct Debit/Scenes/Confirmation/BACSConfirmationViewControllerTests.swift @@ -1,4 +1,8 @@ // +// Copyright (c) 2024 Adyen N.V. +// +// This file is open source and available under the MIT license. See the LICENSE file for more info. +// @_spi(AdyenInternal) @testable import Adyen @testable import AdyenComponents diff --git a/Tests/Components Tests/BACS Direct Debit/Scenes/Input/BACSInputFormViewControllerTests.swift b/Tests/Components Tests/BACS Direct Debit/Scenes/Input/BACSInputFormViewControllerTests.swift index d68dc2fdb5..d0d761f736 100644 --- a/Tests/Components Tests/BACS Direct Debit/Scenes/Input/BACSInputFormViewControllerTests.swift +++ b/Tests/Components Tests/BACS Direct Debit/Scenes/Input/BACSInputFormViewControllerTests.swift @@ -1,4 +1,8 @@ // +// Copyright (c) 2024 Adyen N.V. +// +// This file is open source and available under the MIT license. See the LICENSE file for more info. +// @_spi(AdyenInternal) @testable import Adyen @testable import AdyenComponents diff --git a/Tests/Components Tests/BACS Direct Debit/Scenes/Input/BACSInputPresenterTests.swift b/Tests/Components Tests/BACS Direct Debit/Scenes/Input/BACSInputPresenterTests.swift index 65975cc92c..1bbf338c1a 100644 --- a/Tests/Components Tests/BACS Direct Debit/Scenes/Input/BACSInputPresenterTests.swift +++ b/Tests/Components Tests/BACS Direct Debit/Scenes/Input/BACSInputPresenterTests.swift @@ -1,4 +1,8 @@ // +// Copyright (c) 2024 Adyen N.V. +// +// This file is open source and available under the MIT license. See the LICENSE file for more info. +// @_spi(AdyenInternal) @testable import Adyen @testable import AdyenComponents diff --git a/Tests/Components Tests/BACS Direct Debit/Trackers/BACSDirectDebitComponentTrackerTests.swift b/Tests/Components Tests/BACS Direct Debit/Trackers/BACSDirectDebitComponentTrackerTests.swift index ae0beff1a0..e34e8ccfbb 100644 --- a/Tests/Components Tests/BACS Direct Debit/Trackers/BACSDirectDebitComponentTrackerTests.swift +++ b/Tests/Components Tests/BACS Direct Debit/Trackers/BACSDirectDebitComponentTrackerTests.swift @@ -1,4 +1,8 @@ // +// Copyright (c) 2024 Adyen N.V. +// +// This file is open source and available under the MIT license. See the LICENSE file for more info. +// @testable import Adyen @testable import AdyenComponents diff --git a/Tests/Components Tests/BLIK Component/BLIKComponentTests.swift b/Tests/Components Tests/BLIK Component/BLIKComponentTests.swift index 7dfa87ad0e..f7bb733c03 100644 --- a/Tests/Components Tests/BLIK Component/BLIKComponentTests.swift +++ b/Tests/Components Tests/BLIK Component/BLIKComponentTests.swift @@ -1,9 +1,7 @@ // -// BLIKComponentTests.swift -// AdyenTests +// Copyright (c) 2024 Adyen N.V. // -// Created by Vladimir Abramichev on 03/11/2020. -// Copyright © 2020 Adyen. All rights reserved. +// This file is open source and available under the MIT license. See the LICENSE file for more info. // @_spi(AdyenInternal) @testable import Adyen diff --git a/Tests/Components Tests/Boleto/BoletoComponentTests.swift b/Tests/Components Tests/Boleto/BoletoComponentTests.swift index 678874f008..eb1c0519c0 100644 --- a/Tests/Components Tests/Boleto/BoletoComponentTests.swift +++ b/Tests/Components Tests/Boleto/BoletoComponentTests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Components Tests/Cash App Pay/CashAppPayComponentTests.swift b/Tests/Components Tests/Cash App Pay/CashAppPayComponentTests.swift index 6fc43e9f32..7a0ba602de 100644 --- a/Tests/Components Tests/Cash App Pay/CashAppPayComponentTests.swift +++ b/Tests/Components Tests/Cash App Pay/CashAppPayComponentTests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Components Tests/Doku/DokuComponentTests.swift b/Tests/Components Tests/Doku/DokuComponentTests.swift index bc162e6a05..73b938445e 100644 --- a/Tests/Components Tests/Doku/DokuComponentTests.swift +++ b/Tests/Components Tests/Doku/DokuComponentTests.swift @@ -1,9 +1,7 @@ // -// DokuComponentTests.swift -// AdyenUIKitTests +// Copyright (c) 2024 Adyen N.V. // -// Created by Mohamed Eldoheiri on 1/25/21. -// Copyright © 2021 Adyen. All rights reserved. +// This file is open source and available under the MIT license. See the LICENSE file for more info. // @_spi(AdyenInternal) @testable import Adyen diff --git a/Tests/Components Tests/Gift Card/GiftCardComponentTests.swift b/Tests/Components Tests/Gift Card/GiftCardComponentTests.swift index 9011c7e6cc..9c9f9f424f 100644 --- a/Tests/Components Tests/Gift Card/GiftCardComponentTests.swift +++ b/Tests/Components Tests/Gift Card/GiftCardComponentTests.swift @@ -1,9 +1,7 @@ // -// GiftCardComponentTests.swift -// AdyenUIKitTests +// Copyright (c) 2024 Adyen N.V. // -// Created by Mohamed Eldoheiri on 4/22/21. -// Copyright © 2021 Adyen. All rights reserved. +// This file is open source and available under the MIT license. See the LICENSE file for more info. // @_spi(AdyenInternal) @testable import Adyen diff --git a/Tests/Components Tests/Gift Card/PartialPaymentDelegateMock.swift b/Tests/Components Tests/Gift Card/PartialPaymentDelegateMock.swift index 123844cb95..68c24e19a4 100644 --- a/Tests/Components Tests/Gift Card/PartialPaymentDelegateMock.swift +++ b/Tests/Components Tests/Gift Card/PartialPaymentDelegateMock.swift @@ -1,9 +1,7 @@ // -// PartialPaymentDelegateMock.swift -// AdyenDropIn +// Copyright (c) 2024 Adyen N.V. // -// Created by Mohamed Eldoheiri on 4/22/21. -// Copyright © 2021 Adyen. All rights reserved. +// This file is open source and available under the MIT license. See the LICENSE file for more info. // @_spi(AdyenInternal) @testable import Adyen diff --git a/Tests/Components Tests/Gift Card/ReadyToSubmitPaymentComponentDelegateMock.swift b/Tests/Components Tests/Gift Card/ReadyToSubmitPaymentComponentDelegateMock.swift index 43ec194f87..936ab51262 100644 --- a/Tests/Components Tests/Gift Card/ReadyToSubmitPaymentComponentDelegateMock.swift +++ b/Tests/Components Tests/Gift Card/ReadyToSubmitPaymentComponentDelegateMock.swift @@ -1,9 +1,7 @@ // -// ReadyToSubmitPaymentComponentDelegateMock.swift -// AdyenDropIn +// Copyright (c) 2024 Adyen N.V. // -// Created by Mohamed Eldoheiri on 4/22/21. -// Copyright © 2021 Adyen. All rights reserved. +// This file is open source and available under the MIT license. See the LICENSE file for more info. // @_spi(AdyenInternal) @testable import Adyen diff --git a/Tests/Components Tests/Instant Payment/InstantPaymentComponentTests.swift b/Tests/Components Tests/Instant Payment/InstantPaymentComponentTests.swift index 153adfa666..d417e42ba9 100644 --- a/Tests/Components Tests/Instant Payment/InstantPaymentComponentTests.swift +++ b/Tests/Components Tests/Instant Payment/InstantPaymentComponentTests.swift @@ -1,9 +1,7 @@ // -// InstantPaymentComponentTests.swift -// AdyenUIKitTests +// Copyright (c) 2024 Adyen N.V. // -// Created by Mohamed Eldoheiri on 5/20/21. -// Copyright © 2021 Adyen. All rights reserved. +// This file is open source and available under the MIT license. See the LICENSE file for more info. // @_spi(AdyenInternal) @testable import Adyen diff --git a/Tests/Components Tests/IssuerList/IssuerListComponentTests.swift b/Tests/Components Tests/IssuerList/IssuerListComponentTests.swift index 6293ff9325..8bfd67dcef 100644 --- a/Tests/Components Tests/IssuerList/IssuerListComponentTests.swift +++ b/Tests/Components Tests/IssuerList/IssuerListComponentTests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2023 Adyen. All rights reserved. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Components Tests/MB Way/MBWayComponentTests.swift b/Tests/Components Tests/MB Way/MBWayComponentTests.swift index a57265cafc..4655ac6138 100644 --- a/Tests/Components Tests/MB Way/MBWayComponentTests.swift +++ b/Tests/Components Tests/MB Way/MBWayComponentTests.swift @@ -1,9 +1,7 @@ // -// MBWayComponentTests.swift -// AdyenTests +// Copyright (c) 2024 Adyen N.V. // -// Created by Mohamed Eldoheiri on 7/31/20. -// Copyright © 2020 Adyen. All rights reserved. +// This file is open source and available under the MIT license. See the LICENSE file for more info. // @_spi(AdyenInternal) @testable import Adyen diff --git a/Tests/Components Tests/Online Banking/OnlineBankingComponentTests.swift b/Tests/Components Tests/Online Banking/OnlineBankingComponentTests.swift index 8e4aaabad6..ec702f3cff 100644 --- a/Tests/Components Tests/Online Banking/OnlineBankingComponentTests.swift +++ b/Tests/Components Tests/Online Banking/OnlineBankingComponentTests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Components Tests/PaymentComponent/PaymentComponentSubject.swift b/Tests/Components Tests/PaymentComponent/PaymentComponentSubject.swift index b3b40df8ca..618132a89f 100644 --- a/Tests/Components Tests/PaymentComponent/PaymentComponentSubject.swift +++ b/Tests/Components Tests/PaymentComponent/PaymentComponentSubject.swift @@ -1,9 +1,7 @@ // -// PaymentComponentSubject.swift -// AdyenUIHost +// Copyright (c) 2024 Adyen N.V. // -// Created by Naufal Aros on 09/06/2022. -// Copyright © 2022 Adyen. All rights reserved. +// This file is open source and available under the MIT license. See the LICENSE file for more info. // import Adyen diff --git a/Tests/Components Tests/PaymentComponent/PaymentComponentSubjectTests.swift b/Tests/Components Tests/PaymentComponent/PaymentComponentSubjectTests.swift index 899cb52482..7094b90b1e 100644 --- a/Tests/Components Tests/PaymentComponent/PaymentComponentSubjectTests.swift +++ b/Tests/Components Tests/PaymentComponent/PaymentComponentSubjectTests.swift @@ -1,9 +1,7 @@ // -// PaymentComponentSubjectTests.swift -// AdyenUIKitTests +// Copyright (c) 2024 Adyen N.V. // -// Created by Naufal Aros on 09/06/2022. -// Copyright © 2022 Adyen. All rights reserved. +// This file is open source and available under the MIT license. See the LICENSE file for more info. // import XCTest diff --git a/Tests/Components Tests/QRCode/QRCodeActionComponentTests.swift b/Tests/Components Tests/QRCode/QRCodeActionComponentTests.swift index bce5f72c31..e986944fe2 100644 --- a/Tests/Components Tests/QRCode/QRCodeActionComponentTests.swift +++ b/Tests/Components Tests/QRCode/QRCodeActionComponentTests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Components Tests/QRCode/QRCodeViewDelegateMock.swift b/Tests/Components Tests/QRCode/QRCodeViewDelegateMock.swift index ce5b9dec28..f7014a6f6c 100644 --- a/Tests/Components Tests/QRCode/QRCodeViewDelegateMock.swift +++ b/Tests/Components Tests/QRCode/QRCodeViewDelegateMock.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Components Tests/Qiwi Wallet/QiwiWalletComponentTests.swift b/Tests/Components Tests/Qiwi Wallet/QiwiWalletComponentTests.swift index 613bd5d84f..12bb88219e 100644 --- a/Tests/Components Tests/Qiwi Wallet/QiwiWalletComponentTests.swift +++ b/Tests/Components Tests/Qiwi Wallet/QiwiWalletComponentTests.swift @@ -1,5 +1,5 @@ // -// Copyright © 2020 Adyen. All rights reserved. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Components Tests/SEPA Tests/IBANFormatterTests.swift b/Tests/Components Tests/SEPA Tests/IBANFormatterTests.swift index fb75dfb99c..63508b8397 100644 --- a/Tests/Components Tests/SEPA Tests/IBANFormatterTests.swift +++ b/Tests/Components Tests/SEPA Tests/IBANFormatterTests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Components Tests/SEPA Tests/IBANValidatorTests.swift b/Tests/Components Tests/SEPA Tests/IBANValidatorTests.swift index f06bb1921b..94300985df 100644 --- a/Tests/Components Tests/SEPA Tests/IBANValidatorTests.swift +++ b/Tests/Components Tests/SEPA Tests/IBANValidatorTests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Components Tests/SEPA Tests/SEPADirectDebitComponentTests.swift b/Tests/Components Tests/SEPA Tests/SEPADirectDebitComponentTests.swift index 4c29713137..98a2dda3cf 100644 --- a/Tests/Components Tests/SEPA Tests/SEPADirectDebitComponentTests.swift +++ b/Tests/Components Tests/SEPA Tests/SEPADirectDebitComponentTests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Components Tests/Seven Eleven Component/BasicPersonalInfoFormComponentTests.swift b/Tests/Components Tests/Seven Eleven Component/BasicPersonalInfoFormComponentTests.swift index 64d8ae1e97..46c1012556 100644 --- a/Tests/Components Tests/Seven Eleven Component/BasicPersonalInfoFormComponentTests.swift +++ b/Tests/Components Tests/Seven Eleven Component/BasicPersonalInfoFormComponentTests.swift @@ -1,9 +1,7 @@ // -// BasicPersonalInfoFormComponentTests.swift -// AdyenUIKitTests +// Copyright (c) 2024 Adyen N.V. // -// Created by Mohamed Eldoheiri on 3/18/21. -// Copyright © 2021 Adyen. All rights reserved. +// This file is open source and available under the MIT license. See the LICENSE file for more info. // @_spi(AdyenInternal) @testable import Adyen diff --git a/Tests/Components Tests/UPIComponent/UPIComponentTests.swift b/Tests/Components Tests/UPIComponent/UPIComponentTests.swift index 6aaa51f970..dbbc63553b 100644 --- a/Tests/Components Tests/UPIComponent/UPIComponentTests.swift +++ b/Tests/Components Tests/UPIComponent/UPIComponentTests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/DropIn Tests/ComponentManagerTests.swift b/Tests/DropIn Tests/ComponentManagerTests.swift index ac1c4c438a..806ebf1442 100644 --- a/Tests/DropIn Tests/ComponentManagerTests.swift +++ b/Tests/DropIn Tests/ComponentManagerTests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/DropIn Tests/DropInActionTests.swift b/Tests/DropIn Tests/DropInActionTests.swift index 3cb7b5f438..d26e69271b 100644 --- a/Tests/DropIn Tests/DropInActionTests.swift +++ b/Tests/DropIn Tests/DropInActionTests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/DropIn Tests/DropInDelegateMock.swift b/Tests/DropIn Tests/DropInDelegateMock.swift index 6a6ae95e35..c06e1b7af3 100644 --- a/Tests/DropIn Tests/DropInDelegateMock.swift +++ b/Tests/DropIn Tests/DropInDelegateMock.swift @@ -1,9 +1,7 @@ // -// DropInDelegateMock.swift -// AdyenUIKitTests +// Copyright (c) 2024 Adyen N.V. // -// Created by Vladimir Abramichev on 10/06/2021. -// Copyright © 2021 Adyen. All rights reserved. +// This file is open source and available under the MIT license. See the LICENSE file for more info. // @_spi(AdyenInternal) import Adyen diff --git a/Tests/DropIn Tests/DropInTestInternal.swift b/Tests/DropIn Tests/DropInTestInternal.swift index a99bfb37be..0f155371dd 100644 --- a/Tests/DropIn Tests/DropInTestInternal.swift +++ b/Tests/DropIn Tests/DropInTestInternal.swift @@ -1,9 +1,7 @@ // -// DropInTestInternal.swift -// AdyenUIKitTests +// Copyright (c) 2024 Adyen N.V. // -// Created by Vladimir Abramichev on 25/08/2022. -// Copyright © 2022 Adyen. All rights reserved. +// This file is open source and available under the MIT license. See the LICENSE file for more info. // @_spi(AdyenInternal) @testable import Adyen diff --git a/Tests/DropIn Tests/DropInTests.swift b/Tests/DropIn Tests/DropInTests.swift index 8f50b86256..5177d30c4c 100644 --- a/Tests/DropIn Tests/DropInTests.swift +++ b/Tests/DropIn Tests/DropInTests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/DropIn Tests/ModalToolbarTests.swift b/Tests/DropIn Tests/ModalToolbarTests.swift index ddf3f35901..2b63bf7be5 100644 --- a/Tests/DropIn Tests/ModalToolbarTests.swift +++ b/Tests/DropIn Tests/ModalToolbarTests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/DropIn Tests/ModalViewControllerTests.swift b/Tests/DropIn Tests/ModalViewControllerTests.swift index bf1eb2d75b..ccc937b4ba 100644 --- a/Tests/DropIn Tests/ModalViewControllerTests.swift +++ b/Tests/DropIn Tests/ModalViewControllerTests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/DropIn Tests/Payment Method List/PaymentMethodListComponentDelegateMock.swift b/Tests/DropIn Tests/Payment Method List/PaymentMethodListComponentDelegateMock.swift index 33b7e46add..ed950e529a 100644 --- a/Tests/DropIn Tests/Payment Method List/PaymentMethodListComponentDelegateMock.swift +++ b/Tests/DropIn Tests/Payment Method List/PaymentMethodListComponentDelegateMock.swift @@ -1,9 +1,7 @@ // -// PaymentMethodListComponentDelegateMock.swift -// Adyen +// Copyright (c) 2024 Adyen N.V. // -// Created by Mohamed Eldoheiri on 10/29/21. -// Copyright © 2021 Adyen. All rights reserved. +// This file is open source and available under the MIT license. See the LICENSE file for more info. // @testable import AdyenDropIn diff --git a/Tests/DropIn Tests/Payment Method List/PaymentMethodListComponentTests.swift b/Tests/DropIn Tests/Payment Method List/PaymentMethodListComponentTests.swift index fec25cbdf4..df875a881f 100644 --- a/Tests/DropIn Tests/Payment Method List/PaymentMethodListComponentTests.swift +++ b/Tests/DropIn Tests/Payment Method List/PaymentMethodListComponentTests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/DropIn Tests/PreselectedPaymentComponentTests.swift b/Tests/DropIn Tests/PreselectedPaymentComponentTests.swift index 541454a9ae..353c6fa5ed 100644 --- a/Tests/DropIn Tests/PreselectedPaymentComponentTests.swift +++ b/Tests/DropIn Tests/PreselectedPaymentComponentTests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/DummyData/Dummy.swift b/Tests/DummyData/Dummy.swift index cf50fb3221..203516f9b3 100644 --- a/Tests/DummyData/Dummy.swift +++ b/Tests/DummyData/Dummy.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/DummyData/DummyHelper.swift b/Tests/DummyData/DummyHelper.swift index 9ede7d04a0..b896ab990c 100644 --- a/Tests/DummyData/DummyHelper.swift +++ b/Tests/DummyData/DummyHelper.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/DummyData/DummyPaymentMethods.swift b/Tests/DummyData/DummyPaymentMethods.swift index 59338091a9..62d98e230d 100644 --- a/Tests/DummyData/DummyPaymentMethods.swift +++ b/Tests/DummyData/DummyPaymentMethods.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/DummyData/PostalAddressMocks.swift b/Tests/DummyData/PostalAddressMocks.swift index efd93b7292..5c492c9288 100644 --- a/Tests/DummyData/PostalAddressMocks.swift +++ b/Tests/DummyData/PostalAddressMocks.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Encryption Tests/JWAA256CBCHS512AlgorithmTests.swift b/Tests/Encryption Tests/JWAA256CBCHS512AlgorithmTests.swift index 464d3af5f7..adf611419a 100644 --- a/Tests/Encryption Tests/JWAA256CBCHS512AlgorithmTests.swift +++ b/Tests/Encryption Tests/JWAA256CBCHS512AlgorithmTests.swift @@ -1,9 +1,7 @@ // -// JWAA256CBCHS512AlgorithmTests.swift -// AdyenUIKitTests +// Copyright (c) 2024 Adyen N.V. // -// Created by Mohamed Eldoheiri on 8/18/21. -// Copyright © 2021 Adyen. All rights reserved. +// This file is open source and available under the MIT license. See the LICENSE file for more info. // @testable import AdyenEncryption diff --git a/Tests/Encryption Tests/RSAOAEP256AlgorithmTests.swift b/Tests/Encryption Tests/RSAOAEP256AlgorithmTests.swift index 30ae4a4ce5..7d028948a6 100644 --- a/Tests/Encryption Tests/RSAOAEP256AlgorithmTests.swift +++ b/Tests/Encryption Tests/RSAOAEP256AlgorithmTests.swift @@ -1,9 +1,7 @@ // -// RSAOAEP256AlgorithmTests.swift -// AdyenUIKitTests +// Copyright (c) 2024 Adyen N.V. // -// Created by Mohamed Eldoheiri on 8/18/21. -// Copyright © 2021 Adyen. All rights reserved. +// This file is open source and available under the MIT license. See the LICENSE file for more info. // @testable import AdyenEncryption diff --git a/Tests/Helpers/PaymentMethods+Equatable.swift b/Tests/Helpers/PaymentMethods+Equatable.swift index 6da0280543..7e4002d90f 100644 --- a/Tests/Helpers/PaymentMethods+Equatable.swift +++ b/Tests/Helpers/PaymentMethods+Equatable.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Helpers/UIBarButtonItem+XCTest.swift b/Tests/Helpers/UIBarButtonItem+XCTest.swift index b08c9311d3..e72c250e93 100644 --- a/Tests/Helpers/UIBarButtonItem+XCTest.swift +++ b/Tests/Helpers/UIBarButtonItem+XCTest.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Helpers/UIView+Search.swift b/Tests/Helpers/UIView+Search.swift index e5265c29e2..40ff4a34bb 100644 --- a/Tests/Helpers/UIView+Search.swift +++ b/Tests/Helpers/UIView+Search.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Helpers/UIViewController+Search.swift b/Tests/Helpers/UIViewController+Search.swift index 612b1ded6e..9b46274e12 100644 --- a/Tests/Helpers/UIViewController+Search.swift +++ b/Tests/Helpers/UIViewController+Search.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Helpers/XCTestCase+Coder.swift b/Tests/Helpers/XCTestCase+Coder.swift index cb0224f471..9c41d61c04 100644 --- a/Tests/Helpers/XCTestCase+Coder.swift +++ b/Tests/Helpers/XCTestCase+Coder.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Helpers/XCTestCase+FirstResponder.swift b/Tests/Helpers/XCTestCase+FirstResponder.swift index 0626404f0c..e648f24ed6 100644 --- a/Tests/Helpers/XCTestCase+FirstResponder.swift +++ b/Tests/Helpers/XCTestCase+FirstResponder.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Helpers/XCTestCase+FormAddressItem.swift b/Tests/Helpers/XCTestCase+FormAddressItem.swift index 809c75abbf..40c3fe2508 100644 --- a/Tests/Helpers/XCTestCase+FormAddressItem.swift +++ b/Tests/Helpers/XCTestCase+FormAddressItem.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Helpers/XCTestCase+Result.swift b/Tests/Helpers/XCTestCase+Result.swift index 8406ebf6f9..7977c9bc83 100644 --- a/Tests/Helpers/XCTestCase+Result.swift +++ b/Tests/Helpers/XCTestCase+Result.swift @@ -1,9 +1,7 @@ // -// XCTestCase+Result.swift -// AdyenSession +// Copyright (c) 2024 Adyen N.V. // -// Created by Eren Besel on 3/15/22. -// Copyright © 2022 Adyen. All rights reserved. +// This file is open source and available under the MIT license. See the LICENSE file for more info. // import Foundation diff --git a/Tests/Helpers/XCTestCase+RootViewController.swift b/Tests/Helpers/XCTestCase+RootViewController.swift index 294d2ea86e..60eb0e4431 100644 --- a/Tests/Helpers/XCTestCase+RootViewController.swift +++ b/Tests/Helpers/XCTestCase+RootViewController.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2023 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Helpers/XCTestCase+Style.swift b/Tests/Helpers/XCTestCase+Style.swift index 7ef6ae8313..6edf16e03f 100644 --- a/Tests/Helpers/XCTestCase+Style.swift +++ b/Tests/Helpers/XCTestCase+Style.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/Tests/Helpers/XCTestCase+Wait.swift b/Tests/Helpers/XCTestCase+Wait.swift index 580ee3b686..df202f21d3 100644 --- a/Tests/Helpers/XCTestCase+Wait.swift +++ b/Tests/Helpers/XCTestCase+Wait.swift @@ -1,9 +1,7 @@ // -// XCTestCase+Wait.swift -// AdyenUIKitTests +// Copyright (c) 2024 Adyen N.V. // -// Created by Mohamed Eldoheiri on 12/1/21. -// Copyright © 2021 Adyen. All rights reserved. +// This file is open source and available under the MIT license. See the LICENSE file for more info. // import UIKit diff --git a/Tests/Helpers/XCTestCaseExtension.swift b/Tests/Helpers/XCTestCaseExtension.swift index c0a5a4e4ae..31a8cd1b13 100644 --- a/Tests/Helpers/XCTestCaseExtension.swift +++ b/Tests/Helpers/XCTestCaseExtension.swift @@ -1,9 +1,7 @@ // -// XCTestCaseExtension.swift -// AdyenUIKitTests +// Copyright (c) 2024 Adyen N.V. // -// Created by Mohamed Eldoheiri on 3/18/21. -// Copyright © 2021 Adyen. All rights reserved. +// This file is open source and available under the MIT license. See the LICENSE file for more info. // @_spi(AdyenInternal) @testable import Adyen diff --git a/Tests/Session Tests/SelfRetainingAPIClientTests.swift b/Tests/Session Tests/SelfRetainingAPIClientTests.swift index 938cf8ae15..fd8710051a 100644 --- a/Tests/Session Tests/SelfRetainingAPIClientTests.swift +++ b/Tests/Session Tests/SelfRetainingAPIClientTests.swift @@ -1,9 +1,7 @@ // -// SelfRetainingAPIClientTests.swift -// AdyenUIKitTests +// Copyright (c) 2024 Adyen N.V. // -// Created by Mohamed Eldoheiri on 3/4/22. -// Copyright © 2022 Adyen. All rights reserved. +// This file is open source and available under the MIT license. See the LICENSE file for more info. // import AdyenNetworking diff --git a/Tests/Session Tests/SessionDelegateMock.swift b/Tests/Session Tests/SessionDelegateMock.swift index 5dc9457987..eae6892bab 100644 --- a/Tests/Session Tests/SessionDelegateMock.swift +++ b/Tests/Session Tests/SessionDelegateMock.swift @@ -1,9 +1,7 @@ // -// SessionDelegateMock.swift -// AdyenUIKitTests +// Copyright (c) 2024 Adyen N.V. // -// Created by Eren Besel on 3/29/22. -// Copyright © 2022 Adyen. All rights reserved. +// This file is open source and available under the MIT license. See the LICENSE file for more info. // @_spi(AdyenInternal) import Adyen diff --git a/Tests/Session Tests/SessionTests.swift b/Tests/Session Tests/SessionTests.swift index ed2b9e3884..5c73ab6db2 100644 --- a/Tests/Session Tests/SessionTests.swift +++ b/Tests/Session Tests/SessionTests.swift @@ -1,9 +1,7 @@ // -// SessionTests.swift -// AdyenUIKitTests +// Copyright (c) 2024 Adyen N.V. // -// Created by Mohamed Eldoheiri on 3/8/22. -// Copyright © 2022 Adyen. All rights reserved. +// This file is open source and available under the MIT license. See the LICENSE file for more info. // @testable import AdyenSession diff --git a/UITests/Components/Affirm/AffirmComponentUITests.swift b/UITests/Components/Affirm/AffirmComponentUITests.swift index efa3347459..bb87e6526b 100644 --- a/UITests/Components/Affirm/AffirmComponentUITests.swift +++ b/UITests/Components/Affirm/AffirmComponentUITests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/UITests/Components/Atome/AtomeComponentUITests.swift b/UITests/Components/Atome/AtomeComponentUITests.swift index 4b82c42b0e..7c1e85d491 100644 --- a/UITests/Components/Atome/AtomeComponentUITests.swift +++ b/UITests/Components/Atome/AtomeComponentUITests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/UITests/Components/BLIK/BLIKComponentUITests.swift b/UITests/Components/BLIK/BLIKComponentUITests.swift index 5bf5ded371..7b1aaa4d15 100644 --- a/UITests/Components/BLIK/BLIKComponentUITests.swift +++ b/UITests/Components/BLIK/BLIKComponentUITests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/UITests/Components/Boleto/BoletoComponentUITests.swift b/UITests/Components/Boleto/BoletoComponentUITests.swift index 6d814c60e7..ba14df6032 100644 --- a/UITests/Components/Boleto/BoletoComponentUITests.swift +++ b/UITests/Components/Boleto/BoletoComponentUITests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/UITests/Components/Doku/DokuComponentUITests.swift b/UITests/Components/Doku/DokuComponentUITests.swift index 52f2c26412..ec9a5badbb 100644 --- a/UITests/Components/Doku/DokuComponentUITests.swift +++ b/UITests/Components/Doku/DokuComponentUITests.swift @@ -1,9 +1,7 @@ // -// DokuComponentUITests.swift -// AdyenUIHostUITests +// Copyright (c) 2024 Adyen N.V. // -// Created by Neelam Sharma on 24/02/2023. -// Copyright © 2023 Adyen. All rights reserved. +// This file is open source and available under the MIT license. See the LICENSE file for more info. // @_spi(AdyenInternal) @testable import Adyen diff --git a/UITests/Components/IssuerList/IssuerListComponentUITests.swift b/UITests/Components/IssuerList/IssuerListComponentUITests.swift index 6cdcfecf96..2cc65b5f7b 100644 --- a/UITests/Components/IssuerList/IssuerListComponentUITests.swift +++ b/UITests/Components/IssuerList/IssuerListComponentUITests.swift @@ -1,9 +1,7 @@ // -// IssuerListComponentUITests.swift -// AdyenUIHostUITests +// Copyright (c) 2024 Adyen N.V. // -// Created by Mohamed Eldoheiri on 10/01/2023. -// Copyright © 2023 Adyen. All rights reserved. +// This file is open source and available under the MIT license. See the LICENSE file for more info. // @_spi(AdyenInternal) @testable import Adyen diff --git a/UITests/Components/MBWay/MBWayComponentUITests.swift b/UITests/Components/MBWay/MBWayComponentUITests.swift index 1808b3c0be..bb0fe4b26e 100644 --- a/UITests/Components/MBWay/MBWayComponentUITests.swift +++ b/UITests/Components/MBWay/MBWayComponentUITests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/UITests/Components/Online Banking/OnlineBankingComponentUITests.swift b/UITests/Components/Online Banking/OnlineBankingComponentUITests.swift index 9801239128..48667f7064 100644 --- a/UITests/Components/Online Banking/OnlineBankingComponentUITests.swift +++ b/UITests/Components/Online Banking/OnlineBankingComponentUITests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/UITests/Components/QRCode/QRCodeActionComponentUITests.swift b/UITests/Components/QRCode/QRCodeActionComponentUITests.swift index 235a499574..95317b5197 100644 --- a/UITests/Components/QRCode/QRCodeActionComponentUITests.swift +++ b/UITests/Components/QRCode/QRCodeActionComponentUITests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2021 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/UITests/Components/UPIComponent/UPIComponentUITests.swift b/UITests/Components/UPIComponent/UPIComponentUITests.swift index 7fc18b759b..e2297b2d08 100644 --- a/UITests/Components/UPIComponent/UPIComponentUITests.swift +++ b/UITests/Components/UPIComponent/UPIComponentUITests.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2022 Adyen N.V. +// Copyright (c) 2024 Adyen N.V. // // This file is open source and available under the MIT license. See the LICENSE file for more info. // diff --git a/UITests/Helpers/XCTestCase+SnapshotTesting.swift b/UITests/Helpers/XCTestCase+SnapshotTesting.swift index 8a2219f166..0ee609b323 100644 --- a/UITests/Helpers/XCTestCase+SnapshotTesting.swift +++ b/UITests/Helpers/XCTestCase+SnapshotTesting.swift @@ -1,9 +1,7 @@ // -// XCTestCase+SnapshotTesting.swift -// AdyenUIHostUITests +// Copyright (c) 2024 Adyen N.V. // -// Created by Mohamed Eldoheiri on 11/01/2023. -// Copyright © 2023 Adyen. All rights reserved. +// This file is open source and available under the MIT license. See the LICENSE file for more info. // import SnapshotTesting diff --git a/UITests/UI/ListViewControllerUITests.swift b/UITests/UI/ListViewControllerUITests.swift index 15190efbc1..95b93316f7 100644 --- a/UITests/UI/ListViewControllerUITests.swift +++ b/UITests/UI/ListViewControllerUITests.swift @@ -1,9 +1,7 @@ // -// ListViewControllerUITests.swift -// AdyenUIHostUITests +// Copyright (c) 2024 Adyen N.V. // -// Created by Mohamed Eldoheiri on 11/01/2023. -// Copyright © 2023 Adyen. All rights reserved. +// This file is open source and available under the MIT license. See the LICENSE file for more info. // @_spi(AdyenInternal) @testable import Adyen