Skip to content
This repository has been archived by the owner on Dec 30, 2020. It is now read-only.

Commit

Permalink
Merge pull request #65 from Spomky-Labs/analysis-qoAVK8
Browse files Browse the repository at this point in the history
Applied fixes from StyleCI
  • Loading branch information
Spomky committed Dec 15, 2015
2 parents 6fcfe61 + 6869814 commit c7cacde
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
18 changes: 9 additions & 9 deletions src/Object/JWE.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,15 +51,15 @@ final class JWE extends JWT implements JWEInterface
/**
* JWE constructor.
*
* @param string $input
* @param string $ciphertext
* @param string|null $encrypted_key
* @param string|null $iv
* @param string|null $aad
* @param string|null $tag
* @param string|null $encoded_protected_header
* @param array $unprotected_header
* @param string|null $payload
* @param string $input
* @param string $ciphertext
* @param string|null $encrypted_key
* @param string|null $iv
* @param string|null $aad
* @param string|null $tag
* @param string|null $encoded_protected_header
* @param array $unprotected_header
* @param string|null $payload
*/
public function __construct($input, $ciphertext, $encrypted_key = null, $iv = null, $aad = null, $tag = null, $encoded_protected_header = null, $unprotected_header = [], $payload = null)
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Operation/EncrypterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ public function testMultipleInstructionsNotAllowedWithCompactSerialization()
JSONSerializationModes::JSON_COMPACT_SERIALIZATION,
[
'enc' => 'A256CBC-HS512',
'alg' => 'RSA-OAEP'
'alg' => 'RSA-OAEP',
],
[]
);
Expand Down

0 comments on commit c7cacde

Please sign in to comment.