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.
Completed
Push — master ( 7a138f...80cafa )
by
unknown
01:53
created
src/DropboxAdapter.php 1 patch
Doc Comments   +7 added lines, -2 removed lines patch added patch discarded remove patch
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
      *
122 122
      * @param string $path
123 123
      *
124
-     * @return bool
124
+     * @return boolean|null
125 125
      */
126 126
     public function delete($path)
127 127
     {
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
      *
134 134
      * @param string $dirname
135 135
      *
136
-     * @return bool
136
+     * @return boolean|null
137 137
      */
138 138
     public function deleteDir($dirname)
139 139
     {
@@ -295,6 +295,11 @@  discard block
 block discarded – undo
295 295
         return '/' . ltrim(rtrim($path, '/'), '/');
296 296
     }
297 297
 
298
+    /**
299
+     * @param string $path
300
+     * @param string $contents
301
+     * @param string $mode
302
+     */
298 303
     protected function upload($path, $contents, $mode)
299 304
     {
300 305
         $location = $this->applyPathPrefix($path);
Please login to merge, or discard this patch.