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 ( bece50...4ffa55 )
by François
02:58
created
src/fkooman/VPN/Server/Api/LogModule.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
     {
39 39
         $service->get(
40 40
             '/openvpn/connections',
41
-            function (Request $request, TokenInfo $tokenInfo) {
41
+            function(Request $request, TokenInfo $tokenInfo) {
42 42
                 $tokenInfo->getScope()->requireScope(['admin']);
43 43
 
44 44
                 $response = new JsonResponse();
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
 
51 51
         $service->post(
52 52
             '/openvpn/kill',
53
-            function (Request $request, TokenInfo $tokenInfo) {
53
+            function(Request $request, TokenInfo $tokenInfo) {
54 54
                 $tokenInfo->getScope()->requireScope(['admin', 'portal']);
55 55
 
56 56
                 $commonName = $request->getPostParameter('common_name');
Please login to merge, or discard this patch.