Skip to content

Commit 1870019

Browse files
committed
PHP 8.4 deprecations: Fix implicit nullables
1 parent f644d15 commit 1870019

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
"simplesamlphp/xml-common": "~1.24.0",
4848
"simplesamlphp/xml-security": "~1.13.0",
4949
"simplesamlphp/xml-soap": "~1.7.0",
50-
"simplesamlphp/xml-wsdl": "~1.2.0",
50+
"simplesamlphp/xml-wsdl": "~1.2.1",
5151
"simplesamlphp/ws-security": "~1.9.0",
5252
"symfony/http-foundation": "^6.4"
5353
},

src/IdP/ADFS.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@ private static function signAssertion(
368368
string $cert,
369369
string $algo,
370370
#[\SensitiveParameter]
371-
string $passphrase = null,
371+
?string $passphrase = null,
372372
): Assertion {
373373
$key = PrivateKey::fromFile($key, $passphrase);
374374
$pubkey = PublicKey::fromFile($cert);

0 commit comments

Comments
 (0)