Completed
Push — master ( 5d89d9...b6c216 )
by Robbie
15s queued 10s
created
src/Crypto/OpenSSLCrypto.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@
 block discarded – undo
75 75
      *
76 76
      * @param string $data - The encrypted-and-signed message as base64 ASCII
77 77
      *
78
-     * @return bool|string - The decrypted cleartext or false if signature failed
78
+     * @return string|false - The decrypted cleartext or false if signature failed
79 79
      */
80 80
     public function decrypt($data)
81 81
     {
Please login to merge, or discard this patch.
src/HybridSession.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -25,6 +25,7 @@  discard block
 block discarded – undo
25 25
 
26 26
     /**
27 27
      * @param SessionHandlerInterface[]
28
+     * @param BaseStore[] $handlers
28 29
      *
29 30
      * @return $this
30 31
      */
@@ -38,6 +39,7 @@  discard block
 block discarded – undo
38 39
 
39 40
     /**
40 41
      * @param string
42
+     * @param string $key
41 43
      *
42 44
      * @return $this
43 45
      */
Please login to merge, or discard this patch.
src/Crypto/McryptCrypto.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -35,8 +35,8 @@  discard block
 block discarded – undo
35 35
     }
36 36
 
37 37
     /**
38
-     * @param $key a per-site secret string which is used as the base encryption key.
39
-     * @param $salt a per-session random string which is used as a salt to generate a per-session key
38
+     * @param string $key a per-site secret string which is used as the base encryption key.
39
+     * @param string $salt a per-session random string which is used as a salt to generate a per-session key
40 40
      *
41 41
      * The base encryption key needs to stay secret. If an attacker ever gets it, they can read their session,
42 42
      * and even modify & re-sign it.
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
      *
88 88
      * @param $data - The encrypted-and-signed message as base64 ASCII
89 89
      *
90
-     * @return bool|string - The decrypted cleartext or false if signature failed
90
+     * @return string|false - The decrypted cleartext or false if signature failed
91 91
      */
92 92
     public function decrypt($data)
93 93
     {
Please login to merge, or discard this patch.