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
Pull Request — master (#9)
by Gallice
03:41
created
src/Client.php 1 patch
Doc Comments   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -50,6 +50,9 @@  discard block
 block discarded – undo
50 50
      */
51 51
     private $lastResponse;
52 52
 
53
+    /**
54
+     * @param string $accessToken
55
+     */
53 56
     public function __construct($accessToken, ClientInterface $httpClient = null)
54 57
     {
55 58
         $this->accessToken = $accessToken;
@@ -91,7 +94,6 @@  discard block
 block discarded – undo
91 94
 
92 95
     /**
93 96
      * @param string $uri
94
-     * @param array $options
95 97
      *
96 98
      * @return ResponseInterface
97 99
      */
@@ -103,7 +105,7 @@  discard block
 block discarded – undo
103 105
     /**
104 106
      * @param string $method
105 107
      * @param string $uri
106
-     * @param mixed $body
108
+     * @param string|null $body
107 109
      * @param array $query
108 110
      * @param array $headers
109 111
      * @param array $options
Please login to merge, or discard this patch.
src/Exception/ApiException.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,6 @@
 block discarded – undo
11 11
      *
12 12
      * @param string $message
13 13
      * @param int $code
14
-     * @param mixed $errorData
15 14
      */
16 15
     public function __construct($message = '', $code = 0, $apiError = null)
17 16
     {
Please login to merge, or discard this patch.
src/Messenger.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,6 @@
 block discarded – undo
23 23
     private $client;
24 24
 
25 25
     /**
26
-     * @param string $token
27 26
      * @param Client $client
28 27
      */
29 28
     public function __construct(Client $client)
Please login to merge, or discard this patch.
src/Model/Message.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -31,7 +31,6 @@  discard block
 block discarded – undo
31 31
     private $metadata;
32 32
 
33 33
     /**
34
-     * @param string $type
35 34
      * @param string|Attachment $data
36 35
      */
37 36
     public function __construct($data)
@@ -92,7 +91,7 @@  discard block
 block discarded – undo
92 91
     }
93 92
 
94 93
     /**
95
-     * @param QuickReply $quickReplies
94
+     * @param QuickReply $quickReply
96 95
      */
97 96
     public function addQuickReply(QuickReply $quickReply)
98 97
     {
Please login to merge, or discard this patch.
src/RequestOptionsFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
 class RequestOptionsFactory
9 9
 {
10 10
     /**
11
-     * @param string $recipient
11
+     * @param string $recipientOrPhone
12 12
      * @param Message $message
13 13
      * @param string $notificationType
14 14
      *
Please login to merge, or discard this patch.