Completed
Push — master ( e28d56...0c2e52 )
by Milos
20:06
created
src/JoseJwt/Jwe/RsaAlgorithm.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
      * @param string|resource $kek
29 29
      * @param array           $header
30 30
      *
31
-     * @return array [cek, encryptedCek]
31
+     * @return string[] [cek, encryptedCek]
32 32
      */
33 33
     public function wrapNewKey($cekSizeBits, $kek, array $header)
34 34
     {
Please login to merge, or discard this patch.
src/JoseJwt/Jws/RsaUsingSha.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
      * @param string $securedInput
38 38
      * @param string $key
39 39
      *
40
-     * @return bool
40
+     * @return integer
41 41
      */
42 42
     public function verify($signature, $securedInput, $key)
43 43
     {
Please login to merge, or discard this patch.
src/JoseJwt/Jwe/AesKeyWrapAlgorithm.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
      * @param string|resource $kek
29 29
      * @param array           $header
30 30
      *
31
-     * @return array [cek, encryptedCek]
31
+     * @return string[] [cek, encryptedCek]
32 32
      */
33 33
     public function wrapNewKey($cekSizeBits, $kek, array $header)
34 34
     {
Please login to merge, or discard this patch.
src/JoseJwt/Jwe/AesCbcHmacEncryption.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
      * @param string          $plainText
45 45
      * @param string|resource $cek
46 46
      *
47
-     * @return array [iv, cipherText, authTag]
47
+     * @return string[] [iv, cipherText, authTag]
48 48
      */
49 49
     public function encrypt($aad, $plainText, $cek)
50 50
     {
@@ -103,10 +103,10 @@  discard block
 block discarded – undo
103 103
     }
104 104
 
105 105
     /**
106
-     * @param $aad
107
-     * @param $iv
108
-     * @param $cipherText
109
-     * @param $hmacKey
106
+     * @param string $aad
107
+     * @param string $iv
108
+     * @param string $cipherText
109
+     * @param string $hmacKey
110 110
      *
111 111
      * @return string
112 112
      */
Please login to merge, or discard this patch.