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 ( ee56ef...02bd74 )
by Tharindu
03:54
created
database/seeds/DatabaseSeeder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
      */
10 10
     public function run()
11 11
     {
12
-        if (App::environment(['local', 'staging'])) {
12
+        if (App::environment([ 'local', 'staging' ])) {
13 13
             $this->call(AuthTableSeeder::class);
14 14
         }
15 15
 
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.