Skip to content

Commit

Permalink
Fix unfixed fix 🙄
Browse files Browse the repository at this point in the history
  • Loading branch information
jeromegamez committed Aug 22, 2022
1 parent 63af4d9 commit 1580129
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# CHANGELOG

## Unreleased

Ensure compatibility with `lcobucci/jwt` ^4.2 (this time for real)

## 1.16.2 - 2022-08-22

Ensure compatibility with `lcobucci/jwt` ^4.2
Expand Down
2 changes: 1 addition & 1 deletion src/Firebase/Auth/Token/Verifier.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public function __construct(string $projectId, KeyStore $keys = null, Signer $si
{
$this->projectId = $projectId;
$this->keys = $keys ?? new HttpKeyStore();
$this->config = Configuration::forSymmetricSigner($signer ?? new Sha256(), InMemory::plainText(''));
$this->config = Configuration::forSymmetricSigner($signer ?? new Sha256(), InMemory::empty());
}

public function verifyIdToken($token): Token
Expand Down

0 comments on commit 1580129

Please sign in to comment.