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 ( 84c3a7...ff5597 )
by Stan
02:46
created
src/Entity/Command.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
 
5 5
 class Command extends AbstractEntity
6 6
 {
7
-    const ENTITY_TYPE             = 'Command';
7
+    const ENTITY_TYPE = 'Command';
8 8
 
9 9
     const PREFIX          = '/';
10 10
 
Please login to merge, or discard this patch.
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
     }
45 45
 
46 46
     /**
47
-     * @return mixed
47
+     * @return string
48 48
      */
49 49
     public function getName()
50 50
     {
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
     }
53 53
 
54 54
     /**
55
-     * @return mixed
55
+     * @return string
56 56
      */
57 57
     public function getArgs()
58 58
     {
Please login to merge, or discard this patch.
run.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -8,8 +8,8 @@
 block discarded – undo
8 8
 define('ROOT_DIR', realpath(__DIR__));
9 9
 
10 10
 $paths = [
11
-    ROOT_DIR . '/vendor/autoload.php',
12
-    ROOT_DIR . '/../../autoload.php'
11
+    ROOT_DIR.'/vendor/autoload.php',
12
+    ROOT_DIR.'/../../autoload.php'
13 13
 ];
14 14
 
15 15
 foreach ($paths as $path) {
Please login to merge, or discard this patch.