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 ( c649f9...f3a625 )
by Stan
01:51
created
src/Api/Entity/Message.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -159,7 +159,7 @@
 block discarded – undo
159 159
     }
160 160
 
161 161
     /**
162
-     * @return array
162
+     * @return MessageEntityArray
163 163
      */
164 164
     public function getEntities()
165 165
     {
Please login to merge, or discard this patch.
src/Api/HttpClient.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -41,6 +41,9 @@
 block discarded – undo
41 41
         );
42 42
     }
43 43
 
44
+    /**
45
+     * @param string|null $apiMethodName
46
+     */
44 47
     public function request($apiMethodName, $requestOptions = [])
45 48
     {
46 49
         $method = static::METHOD_POST;
Please login to merge, or discard this patch.
src/Configuration/AbstractLoader.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -23,6 +23,9 @@
 block discarded – undo
23 23
      */
24 24
     protected $fileName;
25 25
 
26
+    /**
27
+     * @param string $path
28
+     */
26 29
     public function __construct($path)
27 30
     {
28 31
         $this->initEnv($path);
Please login to merge, or discard this patch.