Completed
Push — master ( 718c54...9a8ca3 )
by Marin
02:12
created
src/Client.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -35,10 +35,10 @@  discard block
 block discarded – undo
35 35
     }
36 36
 
37 37
     /**
38
-     * @param null $url
38
+     * @param string $url
39 39
      * @param array $options
40 40
      * @throws \Exception
41
-     * @return \GuzzleHttp\Message\FutureResponse|\GuzzleHttp\Message\ResponseInterface|\GuzzleHttp\Ring\Future\FutureInterface|null
41
+     * @return Client
42 42
      */
43 43
     public function post($url = null, array $options = [])
44 44
     {
@@ -59,9 +59,9 @@  discard block
 block discarded – undo
59 59
     }
60 60
 
61 61
     /**
62
-     * @param null $url
62
+     * @param string $url
63 63
      * @param array $options
64
-     * @return \GuzzleHttp\Message\FutureResponse|\GuzzleHttp\Message\ResponseInterface|\GuzzleHttp\Ring\Future\FutureInterface|null
64
+     * @return \GuzzleHttp\Message\ResponseInterface|null
65 65
      */
66 66
     public function get($url = null, $options = [])
67 67
     {
Please login to merge, or discard this patch.
src/Task.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -141,7 +141,7 @@  discard block
 block discarded – undo
141 141
     }
142 142
 
143 143
     /**
144
-     * @param mixed $merchant
144
+     * @param string|null $merchant
145 145
      */
146 146
     public function setMerchant($merchant)
147 147
     {
@@ -157,7 +157,7 @@  discard block
 block discarded – undo
157 157
     }
158 158
 
159 159
     /**
160
-     * @param mixed $executor
160
+     * @param string|null $executor
161 161
      */
162 162
     public function setExecutor($executor)
163 163
     {
@@ -365,7 +365,7 @@  discard block
 block discarded – undo
365 365
     }
366 366
 
367 367
     /**
368
-     * @param mixed $destination
368
+     * @param string|null $destination
369 369
      */
370 370
     public function setDestination($destination)
371 371
     {
Please login to merge, or discard this patch.