From 2ab5410bf36075699400f5c74a31dbec954905ce Mon Sep 17 00:00:00 2001 From: foliengriller Date: Wed, 20 May 2026 13:24:10 +0200 Subject: [PATCH 1/3] Add hideOnLogin property to IdentityProvider --- src/Representation/IdentityProvider.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Representation/IdentityProvider.php b/src/Representation/IdentityProvider.php index 0749691..edd21ae 100644 --- a/src/Representation/IdentityProvider.php +++ b/src/Representation/IdentityProvider.php @@ -54,6 +54,7 @@ public function __construct( protected ?string $displayName = null, protected ?bool $enabled = null, protected ?string $firstBrokerLoginFlowAlias = null, + protected ?bool $hideOnLogin = null, protected ?string $internalId = null, protected ?bool $linkOnly = null, protected ?string $postBrokerLoginFlowAlias = null, From 2a62d58a0c36c012ab5783a33cea4d6bec87080a Mon Sep 17 00:00:00 2001 From: foliengriller Date: Wed, 20 May 2026 14:30:41 +0000 Subject: [PATCH 2/3] adds hints --- src/Representation/IdentityProvider.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Representation/IdentityProvider.php b/src/Representation/IdentityProvider.php index edd21ae..dffc1b4 100644 --- a/src/Representation/IdentityProvider.php +++ b/src/Representation/IdentityProvider.php @@ -33,6 +33,9 @@ * * @method string|null getPostBrokerLoginFlowAlias() * @method self withPostBrokerLoginFlowAlias(?string $postBrokerLoginFlowAlias) + * + * @method bool|null getHideOnLogin() + * @method self withHideOnLogin(?bool $hideOnLogin) * * @method string|null getProviderId() * @method self withProviderId(?string $providerId) From 9d035b9ac494b90b2528ad67346201bad033cf58 Mon Sep 17 00:00:00 2001 From: fschmtt Date: Fri, 22 May 2026 08:21:57 +0200 Subject: [PATCH 3/3] fix: code style --- src/Representation/IdentityProvider.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Representation/IdentityProvider.php b/src/Representation/IdentityProvider.php index dffc1b4..5b46089 100644 --- a/src/Representation/IdentityProvider.php +++ b/src/Representation/IdentityProvider.php @@ -33,7 +33,7 @@ * * @method string|null getPostBrokerLoginFlowAlias() * @method self withPostBrokerLoginFlowAlias(?string $postBrokerLoginFlowAlias) - * + * * @method bool|null getHideOnLogin() * @method self withHideOnLogin(?bool $hideOnLogin) *