GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Passed
Push — master ( fc97d6...1c42e5 )
by Thomas
02:30
created
src/B2Client.php 1 patch
Doc Comments   +8 added lines, -4 removed lines patch added patch discarded remove patch
@@ -95,8 +95,8 @@  discard block
 block discarded – undo
95 95
     }
96 96
 
97 97
     /**
98
-     * @param $endpoint
99
-     * @param $method
98
+     * @param string $endpoint
99
+     * @param string $method
100 100
      * @param array $data
101 101
      * @return mixed
102 102
      * @throws \Exception
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
     /**
133 133
      * @param $uri
134 134
      * @param string $method
135
-     * @param array $headers
135
+     * @param string[] $headers
136 136
      * @param null $body
137 137
      * @return B2Response
138 138
      */
@@ -182,9 +182,12 @@  discard block
 block discarded – undo
182 182
     /**
183 183
      * @param $data
184 184
      * @param $sha1
185
-     * @param $fileName
185
+     * @param string $fileName
186 186
      * @param $url
187 187
      * @param $token
188
+     * @param string $fileData
189
+     * @param string $fileDataSha1
190
+     * @param string $contentType
188 191
      */
189 192
     public function uploadData($fileData, $fileDataSha1, $fileName, $contentType, $uploadUrl, $uploadToken)
190 193
     {
@@ -200,6 +203,7 @@  discard block
 block discarded – undo
200 203
 
201 204
     /**
202 205
      * @param $url
206
+     * @param string $uri
203 207
      */
204 208
     public function downloadFileByName($uri)
205 209
     {
Please login to merge, or discard this patch.