Completed
Pull Request — develop (#2)
by Adam
02:07
created
src/Common/Tests/AbstractServiceTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -86,6 +86,9 @@
 block discarded – undo
86 86
         return $this->httpRequest;
87 87
     }
88 88
 
89
+    /**
90
+     * @param string $class
91
+     */
89 92
     public function callCreateRequest($class, array $parameters)
90 93
     {
91 94
         return $this->createRequest($class, $parameters);
Please login to merge, or discard this patch.
src/Common/Message/AbstractRequest.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
      * Get a parameter
99 99
      *
100 100
      * @param string $key The parameter key
101
-     * @param mixed $default Default value
101
+     * @param string $default Default value
102 102
      * @return mixed
103 103
      */
104 104
     public function getParameter($key, $default = null)
@@ -194,7 +194,7 @@  discard block
 block discarded – undo
194 194
      * Set a parameter on the request
195 195
      *
196 196
      * @param string $key
197
-     * @param mixed $value
197
+     * @param string $value
198 198
      * @return $this
199 199
      * @throws RuntimeException
200 200
      */
Please login to merge, or discard this patch.