Skip to content

Commit

Permalink
Fix PHP 8.4 (Implicitly marking parameter)
Browse files Browse the repository at this point in the history
  • Loading branch information
lavrentiev authored and miladrahimi committed Dec 22, 2024
1 parent c1a3bf6 commit 62bc89a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Generator.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class Generator

private Base64Parser $base64Parser;

public function __construct(?Signer $signer, ?JsonParser $jsonParser = null, ?Base64Parser $base64Parser = null)
public function __construct(Signer $signer, ?JsonParser $jsonParser = null, ?Base64Parser $base64Parser = null)
{
$this->signer = $signer;
$this->jsonParser = $jsonParser ?: new StrictJsonParser();
Expand Down

0 comments on commit 62bc89a

Please sign in to comment.