Completed
Pull Request — master (#14)
by Sergey
02:31
created
src/EndPoints/Manager.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
     }
29 29
 
30 30
     /**
31
-     * @param $key
31
+     * @param string $key
32 32
      * @return null
33 33
      * @throws HeadHunterApiException
34 34
      */
Please login to merge, or discard this patch.
src/EndPoints/Endpoint.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -124,8 +124,8 @@
 block discarded – undo
124 124
     }
125 125
 
126 126
     /**
127
-     * @param $method
128
-     * @param $verb
127
+     * @param string $method
128
+     * @param string $verb
129 129
      * @param $params
130 130
      * @return mixed
131 131
      */
Please login to merge, or discard this patch.
src/Request.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -18,6 +18,10 @@
 block discarded – undo
18 18
      */
19 19
     protected $headers = [];
20 20
 
21
+    /**
22
+     * @param string $baseUrl
23
+     * @param string $token
24
+     */
21 25
     public function __construct($baseUrl, $token = null)
22 26
     {
23 27
         $this->client = new Client(['base_uri' => $baseUrl]);
Please login to merge, or discard this patch.