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.
Test Setup Failed
Push — master ( a7e3a5...701ee8 )
by Tharindu
07:42
created
app/Notifications/MailResetPasswordToken.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
      */
28 28
     public function via()
29 29
     {
30
-        return ['mail'];
30
+        return [ 'mail' ];
31 31
     }
32 32
 
33 33
     /**
Please login to merge, or discard this patch.
routes/api.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -17,8 +17,8 @@  discard block
 block discarded – undo
17 17
 $api = app(Router::class);
18 18
 
19 19
 // Create a Dingo Version Group
20
-$api->version('v1', ['middleware' => 'api'], function ($api) {
21
-    $api->group(['prefix' => 'auth'], function ($api) {
20
+$api->version('v1', [ 'middleware' => 'api' ], function($api) {
21
+    $api->group([ 'prefix' => 'auth' ], function($api) {
22 22
         $api->post('register', [
23 23
             'as' => 'register',
24 24
             'uses' => 'App\\Api\\V1\\Controllers\\RegisterController@register',
@@ -43,8 +43,8 @@  discard block
 block discarded – undo
43 43
     });
44 44
 
45 45
     // Protected routes
46
-    $api->group(['middleware' => 'auth:api'], function ($api) {
47
-        $api->get('protected', function () {
46
+    $api->group([ 'middleware' => 'auth:api' ], function($api) {
47
+        $api->get('protected', function() {
48 48
             return response()->json([
49 49
                 'message' => 'Access to protected resources granted! You are seeing this text as you provided the token correctly.',
50 50
             ]);
Please login to merge, or discard this patch.