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.
Passed
Push — master ( 11f3a5...9dc363 )
by Tharindu
04:00
created
resources/lang/en/validation.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -116,5 +116,5 @@
 block discarded – undo
116 116
     |
117 117
     */
118 118
 
119
-    'attributes' => [],
119
+    'attributes' => [ ],
120 120
 ];
Please login to merge, or discard this patch.
config/cors.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -12,10 +12,10 @@
 block discarded – undo
12 12
     */
13 13
 
14 14
     'supportsCredentials' => false,
15
-    'allowedOrigins' => ['*'],
16
-    'allowedOriginsPatterns' => [],
17
-    'allowedHeaders' => ['*'],
18
-    'allowedMethods' => ['*'],
19
-    'exposedHeaders' => [],
15
+    'allowedOrigins' => [ '*' ],
16
+    'allowedOriginsPatterns' => [ ],
17
+    'allowedHeaders' => [ '*' ],
18
+    'allowedMethods' => [ '*' ],
19
+    'exposedHeaders' => [ ],
20 20
     'maxAge' => 0,
21 21
 ];
Please login to merge, or discard this patch.
config/session.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -108,7 +108,7 @@
 block discarded – undo
108 108
     |
109 109
     */
110 110
 
111
-    'lottery' => [2, 100],
111
+    'lottery' => [ 2, 100 ],
112 112
 
113 113
     /*
114 114
     |--------------------------------------------------------------------------
Please login to merge, or discard this patch.
config/logging.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
     'channels' => [
32 32
         'stack' => [
33 33
             'driver' => 'stack',
34
-            'channels' => ['single'],
34
+            'channels' => [ 'single' ],
35 35
         ],
36 36
 
37 37
         'single' => [
Please login to merge, or discard this patch.