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 ( 44e706...780f28 )
by Felix
02:53
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/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.
src/BaseApp.php 1 patch
Unused Use Statements   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -10,13 +10,13 @@
 block discarded – undo
10 10
 
11 11
 use Starlit\App\Container\Container;
12 12
 use Starlit\App\Provider\BootableServiceProviderInterface;
13
+use Starlit\App\Provider\ErrorServiceProvider;
14
+use Starlit\App\Provider\ServiceProviderInterface;
15
+use Starlit\App\Provider\StandardServiceProvider;
13 16
 use Symfony\Component\HttpFoundation\Request;
14 17
 use Symfony\Component\HttpFoundation\Response;
15
-use Symfony\Component\Routing\Exception\ResourceNotFoundException;
16 18
 use Symfony\Component\HttpFoundation\Session\Session;
17
-use Starlit\App\Provider\ServiceProviderInterface;
18
-use Starlit\App\Provider\StandardServiceProvider;
19
-use Starlit\App\Provider\ErrorServiceProvider;
19
+use Symfony\Component\Routing\Exception\ResourceNotFoundException;
20 20
 
21 21
 /**
22 22
  * Main framework application and bootstrap class, which also serves as a micro service/dependency injection container.
Please login to merge, or discard this patch.