Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/Representation/IdentityProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -54,6 +57,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,
Expand Down
Loading