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 ( ff5597...7027db )
by Stan
02:49
created
src/Entity/Message.php 2 patches
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.
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -2,9 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace Teebot\Entity;
4 4
 
5
-use Teebot\Command\Handler;
6
-use Teebot\Config;
7
-
8 5
 class Message extends AbstractEntity
9 6
 {
10 7
     const ENTITY_TYPE             = 'Message';
Please login to merge, or discard this patch.
src/Config.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
     protected function loadConfigFile($configFile)
100 100
     {
101 101
         if (!is_file($configFile) || !is_readable($configFile)) {
102
-            Output::log(new Fatal('File "' . $configFile . '" does not exists or not readable!'));
102
+            Output::log(new Fatal('File "'.$configFile.'" does not exists or not readable!'));
103 103
         }
104 104
 
105 105
         $config = require_once($configFile);
@@ -230,6 +230,6 @@  discard block
 block discarded – undo
230 230
             return null;
231 231
         }
232 232
 
233
-        return $this->file_url . $this->token . '/';
233
+        return $this->file_url.$this->token.'/';
234 234
     }
235 235
 }
Please login to merge, or discard this patch.
src/Entity/MessageEntityArray.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
 
7 7
 class MessageEntityArray extends AbstractEntity
8 8
 {
9
-    const ENTITY_TYPE      = 'MessageEntityArray';
9
+    const ENTITY_TYPE = 'MessageEntityArray';
10 10
 
11 11
     protected $entities;
12 12
 
Please login to merge, or discard this patch.