Skip to content

Commit c0da80c

Browse files
committed
Revert "Bug fixed"
This reverts commit 71121e0.
1 parent 71121e0 commit c0da80c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Component/Encryption/NestedTokenLoader.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,13 +48,13 @@ public function __construct(JWELoader $jweLoader, JWSLoader $jwsLoader)
4848
* @param string $token
4949
* @param JWKSet $encryptionKeySet
5050
* @param JWKSet $signatureKeySet
51-
* @param int|null $recipient
51+
* @param int|null $signature
5252
*
5353
* @throws \Exception
5454
*
5555
* @return JWS
5656
*/
57-
public function load(string $token, JWKSet $encryptionKeySet, JWKSet $signatureKeySet, ?int &$recipient = null): JWS
57+
public function load(string $token, JWKSet $encryptionKeySet, JWKSet $signatureKeySet, ?int &$signature = null): JWS
5858
{
5959
$recipient = null;
6060
$jwe = $this->jweLoader->loadAndDecryptWithKeySet($token, $encryptionKeySet, $recipient);

0 commit comments

Comments
 (0)