Test Failed
Push — master ( 4cda0f...e67d0a )
by Andrew
01:58
created
src/Request.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -27,11 +27,17 @@
 block discarded – undo
27 27
 		$this->client = new Client(['base_uri' => $this->url]);
28 28
     }
29 29
 
30
+    /**
31
+     * @param string $key
32
+     */
30 33
     public function setHeader($key, $value)
31 34
     {
32 35
         $this->headers[$key] = $value;
33 36
     }
34 37
 
38
+	/**
39
+	 * @param string $path
40
+	 */
35 41
 	public function send($path)
36 42
 	{
37 43
 		return $this->client->request($this->method, $path, [
Please login to merge, or discard this patch.