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 7c20b62 commit 9448655Copy full SHA for 9448655
testkit-backend/src/Requests/AuthorizationTokenRequest.php
@@ -25,14 +25,14 @@ public function __construct(
25
string $scheme,
26
string $principal,
27
string $credentials,
28
- string $realm,
29
- string $ticket
+ string $realm = null,
+ string $ticket = null
30
) {
31
$this->scheme = $scheme;
32
$this->principal = $principal;
33
$this->credentials = $credentials;
34
- $this->realm = $realm;
35
- $this->ticket = $ticket;
+ $this->realm = $realm ?? '';
+ $this->ticket = $ticket ?? '';
36
}
37
38
public function getScheme(): string
0 commit comments