Completed
Push — master ( 905bf2...f96ec1 )
by Mark
01:51
created
src/Laposta.php 1 patch
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.