Completed
Push — master ( 9b1dc4...47b508 )
by Tomasz
02:44
created
src/Gendoria/CruftFlake/Config/ConsulCurl.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -25,6 +25,9 @@  discard block
 block discarded – undo
25 25
         $this->apiPrefix = $apiPrefix;
26 26
     }
27 27
     
28
+    /**
29
+     * @param string $url
30
+     */
28 31
     public function performGetRequest($url)
29 32
     {
30 33
         $curlUrl = $this->consulBaseUrl . $this->apiPrefix . $url;
@@ -35,6 +38,9 @@  discard block
 block discarded – undo
35 38
         return $returnData;
36 39
     }
37 40
     
41
+    /**
42
+     * @param string $url
43
+     */
38 44
     public function performPutRequest($url, $payload = null)
39 45
     {
40 46
         $curlUrl = $this->consulBaseUrl . $this->apiPrefix . $url;
Please login to merge, or discard this patch.