Completed
Push — master ( 4b3306...1987eb )
by Milos
18s queued 10s
created
src/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.
src/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/Jwe/AesKeyWrapAlgorithm.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
      * @param string|resource $kek
44 44
      * @param array           $header
45 45
      *
46
-     * @return array [cek, encryptedCek]
46
+     * @return string[] [cek, encryptedCek]
47 47
      */
48 48
     public function wrapNewKey($cekSizeBits, $kek, array $header)
49 49
     {
Please login to merge, or discard this patch.
src/Jwe/RsaAlgorithm.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
      * @param string|resource $kek
44 44
      * @param array           $header
45 45
      *
46
-     * @return array [cek, encryptedCek]
46
+     * @return string[] [cek, encryptedCek]
47 47
      */
48 48
     public function wrapNewKey($cekSizeBits, $kek, array $header)
49 49
     {
Please login to merge, or discard this patch.