Completed
Push — master ( dc6fd0...e8be55 )
by Gregorio
02:54
created
src/BankAccount.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -112,7 +112,7 @@
 block discarded – undo
112 112
      * Set one parameter.
113 113
      *
114 114
      * @param string $key Parameter key
115
-     * @param mixed $value Parameter value
115
+     * @param string $value Parameter value
116 116
      * @return BankAccount provides a fluent interface.
117 117
      */
118 118
     protected function setParameter($key, $value)
Please login to merge, or discard this patch.
src/Concerns/HasSpreedlyConfig.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -17,6 +17,9 @@  discard block
 block discarded – undo
17 17
         );
18 18
     }
19 19
 
20
+    /**
21
+     * @return string|boolean
22
+     */
20 23
     public function getApiKey()
21 24
     {
22 25
         return $this->getParameter('api_key');
@@ -27,6 +30,9 @@  discard block
 block discarded – undo
27 30
         return $this->setParameter('api_key', $value);
28 31
     }
29 32
 
33
+    /**
34
+     * @return string
35
+     */
30 36
     public function getApiSecret()
31 37
     {
32 38
         return $this->getParameter('api_secret');
Please login to merge, or discard this patch.