Skip to content

Commit 3542562

Browse files
committed
Add more trailing comma's
1 parent d7a7357 commit 3542562

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

modules/core/src/Auth/UserPassOrgBase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ abstract protected function login(
242242
string $username,
243243
#[\SensitiveParameter]
244244
string $password,
245-
string $organization
245+
string $organization,
246246
): array;
247247

248248

modules/saml/hooks/hook_sanitycheck.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ function matchingKeyPair(
5757
string $publicKey,
5858
string $privateKey,
5959
#[\SensitiveParameter]
60-
?string $password = null
60+
?string $password = null,
6161
): bool {
6262
return openssl_x509_check_private_key($publicKey, [$privateKey, $password]);
6363
}

src/SimpleSAML/Database.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ private function connect(
157157
string $username = null,
158158
#[\SensitiveParameter]
159159
string $password = null,
160-
array $options
160+
array $options,
161161
): PDO {
162162
try {
163163
$db = new PDO($dsn, $username, $password, $options);

src/SimpleSAML/XML/Signer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ public function loadPrivateKey(
136136
string $location,
137137
#[\SensitiveParameter]
138138
?string $pass,
139-
bool $full_path = false
139+
bool $full_path = false,
140140
): void {
141141
$cryptoUtils = new Utils\Crypto();
142142
$keyData = $cryptoUtils->retrieveKey($location, $full_path);

0 commit comments

Comments
 (0)