We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e75198c commit 437b222Copy full SHA for 437b222
1 file changed
src/Codebooks/ClientAuthenticationMethodsEnum.php
@@ -0,0 +1,18 @@
1
+<?php
2
+
3
+declare(strict_types=1);
4
5
+namespace SimpleSAML\OpenID\Codebooks;
6
7
+enum ClientAuthenticationMethodsEnum: string
8
+{
9
+ case ClientSecretBasic = 'client_secret_basic';
10
11
+ case ClientSecretPost = 'client_secret_post';
12
13
+ case ClientSecretJwt = 'client_secret_jwt';
14
15
+ case PrivateKeyJwt = 'private_key_jwt';
16
17
+ case None = 'none';
18
+}
0 commit comments