We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f7f0f3 commit 0c2a8d5Copy full SHA for 0c2a8d5
src/Client/Client.php
@@ -30,7 +30,7 @@ class Client
30
private $claims;
31
32
/**
33
- * @var string
+ * @var string|null
34
*/
35
private $hashAlgorithm;
36
@@ -40,7 +40,7 @@ class Client
40
private $httpClient;
41
42
43
44
45
private $privateKey;
46
@@ -67,6 +67,16 @@ public function getApiKey(): string
67
return $this->apiKey;
68
}
69
70
+ public function getPrivateKey(): ?string
71
+ {
72
+ return $this->privateKey;
73
+ }
74
+
75
+ public function getHashAlgorithm(): ?string
76
77
+ return $this->hashAlgorithm;
78
79
80
public function getClaims(): array
81
{
82
return [];
0 commit comments