Skip to content

Commit 12fab5d

Browse files
authored
Merge pull request #23 from bastnic/feature/scope-separator
Change default scope separator to space
2 parents f695340 + 789d11b commit 12fab5d

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

src/Provider/Keycloak.php

+12
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,18 @@ protected function getDefaultScopes()
177177
return ['name', 'email'];
178178
}
179179

180+
/**
181+
* Returns the string that should be used to separate scopes when building
182+
* the URL for requesting an access token.
183+
*
184+
* @return string Scope separator, defaults to ','
185+
*/
186+
protected function getScopeSeparator()
187+
{
188+
return ' ';
189+
}
190+
191+
180192
/**
181193
* Check a provider response for errors.
182194
*

0 commit comments

Comments
 (0)