Completed
Push — master ( 905bf2...f96ec1 )
by Mark
01:51
created
src/Laposta.php 2 patches
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -83,16 +83,25 @@
 block discarded – undo
83 83
         ]);
84 84
     }
85 85
 
86
+    /**
87
+     * @param string $uri
88
+     */
86 89
     private function get($uri, $options = [])
87 90
     {
88 91
         return $this->request('get', $uri, $options);
89 92
     }
90 93
 
94
+    /**
95
+     * @param string $uri
96
+     */
91 97
     private function post($uri, $options = [])
92 98
     {
93 99
         return $this->request('post', $uri, $options);
94 100
     }
95 101
 
102
+    /**
103
+     * @param string $method
104
+     */
96 105
     private function request($method, $uri, $options = [])
97 106
     {
98 107
         try {
Please login to merge, or discard this patch.
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,8 +3,8 @@
 block discarded – undo
3 3
 namespace Mrkj\Laposta;
4 4
 
5 5
 use GuzzleHttp\Client;
6
-use Mrkj\Laposta\Models\List_;
7 6
 use GuzzleHttp\Exception\RequestException;
7
+use Mrkj\Laposta\Models\List_;
8 8
 use Mrkj\Transformers\ListTransformer;
9 9
 
10 10
 class Laposta
Please login to merge, or discard this patch.