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
Branch master (486af6)
by Mozammil
02:21
created
src/Files.php 2 patches
Doc Comments   +1 added lines, -3 removed lines patch added patch discarded remove patch
@@ -174,8 +174,6 @@  discard block
 block discarded – undo
174 174
     /**
175 175
      * Moves given file/folder
176 176
      *
177
-     * @param integer $id
178
-     * @param string $name
179 177
      *
180 178
      * @throws \GuzzleHttp\Exception\GuzzleException
181 179
      *
@@ -449,7 +447,7 @@  discard block
 block discarded – undo
449 447
      * Sets default video position for a video file.
450 448
      *
451 449
      * @param integer $id
452
-     * @param string $time
450
+     * @param integer $time
453 451
      *
454 452
      * @throws \GuzzleHttp\Exception\GuzzleException
455 453
      *
Please login to merge, or discard this patch.
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace Mozammil\Putio;
3 3
 
4
-use Mozammil\Putio\Http\Client;
5 4
 use Mozammil\Putio\Exceptions\FileNotFoundException;
5
+use Mozammil\Putio\Http\Client;
6 6
 
7 7
 class Files
8 8
 {
Please login to merge, or discard this patch.
src/Http/Client.php 2 patches
Doc Comments   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -61,7 +61,6 @@  discard block
 block discarded – undo
61 61
      * Sends a POST Request
62 62
      *
63 63
      * @param string $uri
64
-     * @param array $query
65 64
      * @param array $options
66 65
      *
67 66
      * @return string JSON
@@ -78,7 +77,7 @@  discard block
 block discarded – undo
78 77
      *
79 78
      * @param string $token
80 79
      *
81
-     * @return GuzzleHttp\Client
80
+     * @return GuzzleClient
82 81
      */
83 82
     private function getHttpClient(string $token)
84 83
     {
@@ -96,7 +95,7 @@  discard block
 block discarded – undo
96 95
      *
97 96
      * @param string $token
98 97
      *
99
-     * @return GuzzleHttp\HandlerStack $stack
98
+     * @return HandlerStack $stack
100 99
      */
101 100
     private function getHandlerStack(string $token)
102 101
     {
Please login to merge, or discard this patch.
Unused Use Statements   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,12 +1,12 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace Mozammil\Putio\Http;
3 3
 
4
-use GuzzleHttp\Middleware;
5
-use GuzzleHttp\Psr7\Uri;
6
-use GuzzleHttp\Psr7\Request;
4
+use GuzzleHttp\Client as GuzzleClient;
7 5
 use GuzzleHttp\HandlerStack;
8 6
 use GuzzleHttp\Handler\CurlHandler;
9
-use GuzzleHttp\Client as GuzzleClient;
7
+use GuzzleHttp\Middleware;
8
+use GuzzleHttp\Psr7\Request;
9
+use GuzzleHttp\Psr7\Uri;
10 10
 use Psr\Http\Message\RequestInterface;
11 11
 
12 12
 class Client
Please login to merge, or discard this patch.