Passed
Branch master (1e1010)
by Adam
02:16
created
src/AbstractClient.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -87,7 +87,7 @@
 block discarded – undo
87 87
 
88 88
     /**
89 89
      * @param string $key
90
-     * @param $value
90
+     * @param string $value
91 91
      * @return $this
92 92
      */
93 93
     public function setParameter($key, $value)
Please login to merge, or discard this patch.
src/Message/AbstractRequest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -90,7 +90,7 @@
 block discarded – undo
90 90
     }
91 91
 
92 92
     /**
93
-     * @return mixed
93
+     * @return ResponseInterface
94 94
      */
95 95
     public function getResponse()
96 96
     {
Please login to merge, or discard this patch.
src/Helper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
         $str = self::convertToLowercase($str);
38 38
         return preg_replace_callback(
39 39
             '/_([a-z])/',
40
-            function ($match) {
40
+            function($match) {
41 41
                 return strtoupper($match[1]);
42 42
             },
43 43
             $str
Please login to merge, or discard this patch.