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 ( 685370...276e3f )
by Andreas
01:52
created
src/AbstractController.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -8,11 +8,11 @@
 block discarded – undo
8 8
 
9 9
 namespace Starlit\App;
10 10
 
11
+use Starlit\Utils\Str;
12
+use Starlit\Utils\Url;
11 13
 use Symfony\Component\HttpFoundation\Request;
12 14
 use Symfony\Component\HttpFoundation\Response;
13 15
 use Symfony\Component\Routing;
14
-use Starlit\Utils\Str;
15
-use Starlit\Utils\Url;
16 16
 
17 17
 /**
18 18
  * Base action controller.
Please login to merge, or discard this patch.
src/BaseApp.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -257,7 +257,7 @@
 block discarded – undo
257 257
      * Get new instance of a DIC object.
258 258
      *
259 259
      * @param string $key
260
-     * @return mixed
260
+     * @return null|\Symfony\Component\HttpFoundation\Session\Storage\SessionStorageInterface
261 261
      */
262 262
     public function getNew($key)
263 263
     {
Please login to merge, or discard this patch.
Unused Use Statements   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -8,13 +8,13 @@
 block discarded – undo
8 8
 
9 9
 namespace Starlit\App;
10 10
 
11
+use Starlit\App\Provider\ErrorServiceProvider;
12
+use Starlit\App\Provider\ServiceProviderInterface;
13
+use Starlit\App\Provider\StandardServiceProvider;
11 14
 use Symfony\Component\HttpFoundation\Request;
12 15
 use Symfony\Component\HttpFoundation\Response;
13
-use Symfony\Component\Routing\Exception\ResourceNotFoundException;
14 16
 use Symfony\Component\HttpFoundation\Session\Session;
15
-use Starlit\App\Provider\ServiceProviderInterface;
16
-use Starlit\App\Provider\StandardServiceProvider;
17
-use Starlit\App\Provider\ErrorServiceProvider;
17
+use Symfony\Component\Routing\Exception\ResourceNotFoundException;
18 18
 
19 19
 
20 20
 /**
Please login to merge, or discard this patch.
src/View.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,8 +8,8 @@
 block discarded – undo
8 8
 
9 9
 namespace Starlit\App;
10 10
 
11
-use Symfony\Component\HttpFoundation\Request;
12 11
 use Starlit\App\ViewHelper\AbstractViewHelper;
12
+use Symfony\Component\HttpFoundation\Request;
13 13
 
14 14
 /**
15 15
  * Class for rendering view content.
Please login to merge, or discard this patch.