Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
2 changes: 1 addition & 1 deletion lib/DirectorySync.php
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ public function listGroups(
$params["directory"] = $directory;
}
if ($user) {
$params["user"] = $group;
Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

$group is undefined in this scope, this never could have worked.

$params["user"] = $user;
}

$response = Client::request(
Expand Down
4 changes: 2 additions & 2 deletions lib/SSO.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ class SSO
* @param null|string $provider Service provider that handles the identity of the user
* @param null|string $connection Unique identifier for a WorkOS Connection
* @param null|string $organization Unique identifier for a WorkOS Organization
* @param null|string $domainHint DDomain hint that will be passed as a parameter to the IdP login page
* @param null|string $loginHint Username/email hint that will be passed as a parameter to the to IdP login page
* @param null|string $domainHint Domain hint that will be passed as a parameter to the IdP login page
Comment thread
gcarvelli marked this conversation as resolved.
* @param null|string $loginHint Username/email hint that will be passed as a parameter to the IdP login page
*
* @throws Exception\UnexpectedValueException
* @throws Exception\ConfigurationException
Expand Down
2 changes: 1 addition & 1 deletion lib/UserManagement.php
Original file line number Diff line number Diff line change
Expand Up @@ -610,7 +610,7 @@ public function revokeInvitation($invitationId)
* @param null|string $provider Service provider that handles the identity of the user
* @param null|string $connectionId Unique identifier for a WorkOS Connection
* @param null|string $organizationId Unique identifier for a WorkOS Organization
* @param null|string $domainHint DDomain hint that will be passed as a parameter to the IdP login page
* @param null|string $domainHint Domain hint that will be passed as a parameter to the IdP login page
* @param null|string $loginHint Username/email hint that will be passed as a parameter to the to IdP login page
* @param null|string $screenHint The page that the user will be redirected to when the provider is authkit
* @param null|array $providerScopes An array of provider-specific scopes
Expand Down