Skip to content

Commit 62bc89a

Browse files
lavrentievmiladrahimi
authored andcommitted
Fix PHP 8.4 (Implicitly marking parameter)
1 parent c1a3bf6 commit 62bc89a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎src/Generator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class Generator
2222

2323
private Base64Parser $base64Parser;
2424

25-
public function __construct(?Signer $signer, ?JsonParser $jsonParser = null, ?Base64Parser $base64Parser = null)
25+
public function __construct(Signer $signer, ?JsonParser $jsonParser = null, ?Base64Parser $base64Parser = null)
2626
{
2727
$this->signer = $signer;
2828
$this->jsonParser = $jsonParser ?: new StrictJsonParser();

0 commit comments

Comments
 (0)