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 ( b9cf05...84c3a7 )
by Stan
03:33
created
src/Response.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -137,7 +137,7 @@
 block discarded – undo
137 137
         $entity      = null;
138 138
 
139 139
         if (!class_exists($entityClass)) {
140
-            Output::log(new Critical('Entity "' . $entityClass . '" does not exists or not supported yet!'));
140
+            Output::log(new Critical('Entity "'.$entityClass.'" does not exists or not supported yet!'));
141 141
         }
142 142
         /** @var AbstractEntity $entity */
143 143
         $entity = new $entityClass($rawItemData);
Please login to merge, or discard this patch.
run.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
7 7
  */
8 8
 
9 9
 define('ROOT_DIR', realpath(__DIR__));
10
-require_once ROOT_DIR . '/vendor/autoload.php';
10
+require_once ROOT_DIR.'/vendor/autoload.php';
11 11
 
12 12
 $client = new Teebot\Client();
13 13
 
Please login to merge, or discard this patch.
hook.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@
 block discarded – undo
5 5
  * @author Stan Drozdov <[email protected]>
6 6
  */
7 7
 
8
-require_once realpath(__DIR__) . '/vendor/autoload.php';
8
+require_once realpath(__DIR__).'/vendor/autoload.php';
9 9
 
10 10
 $client   = new \Teebot\Client(['n' => 'Example']);
11 11
 $response = $client->webhook();
Please login to merge, or discard this patch.
botmother.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -80,11 +80,11 @@
 block discarded – undo
80 80
     {
81 81
         echo "\nCreating a new bot.\n";
82 82
 
83
-        echo $botName . " - " . $token . " - " . $dir;
83
+        echo $botName." - ".$token." - ".$dir;
84 84
     }
85 85
 }
86 86
 
87 87
 define('ROOT_DIR', realpath(__DIR__));
88
-require_once ROOT_DIR . '/vendor/autoload.php';
88
+require_once ROOT_DIR.'/vendor/autoload.php';
89 89
 
90 90
 $BotMother = new BotMother();
Please login to merge, or discard this patch.