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 ( 9dc363...21b11b )
by Tharindu
04:02
created
database/migrations/2014_10_12_000000_create_users_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
      */
12 12
     public function up()
13 13
     {
14
-        Schema::create('users', function (Blueprint $table) {
14
+        Schema::create('users', function(Blueprint $table) {
15 15
             $table->increments('id');
16 16
             $table->string('name');
17 17
             $table->string('email')->unique();
Please login to merge, or discard this patch.
database/migrations/2014_10_12_100000_create_password_resets_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
      */
12 12
     public function up()
13 13
     {
14
-        Schema::create('password_resets', function (Blueprint $table) {
14
+        Schema::create('password_resets', function(Blueprint $table) {
15 15
             $table->string('email')->index();
16 16
             $table->string('token');
17 17
             $table->timestamp('created_at')->nullable();
Please login to merge, or discard this patch.
database/factories/UserFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
 |
14 14
 */
15 15
 
16
-$factory->define(App\Models\User::class, function (Faker $faker) {
16
+$factory->define(App\Models\User::class, function(Faker $faker) {
17 17
     static $password;
18 18
 
19 19
     return [
Please login to merge, or discard this patch.
routes/channels.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,6 +11,6 @@
 block discarded – undo
11 11
 |
12 12
 */
13 13
 
14
-Broadcast::channel('App.User.{id}', function ($user, $id) {
14
+Broadcast::channel('App.User.{id}', function($user, $id) {
15 15
     return (int) $user->id === (int) $id;
16 16
 });
Please login to merge, or discard this patch.
routes/web.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,6 +11,6 @@
 block discarded – undo
11 11
 |
12 12
 */
13 13
 
14
-Route::get('/', function () {
14
+Route::get('/', function() {
15 15
     return view('welcome');
16 16
 });
Please login to merge, or discard this patch.
routes/console.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,6 +13,6 @@
 block discarded – undo
13 13
 |
14 14
 */
15 15
 
16
-Artisan::command('inspire', function () {
16
+Artisan::command('inspire', function() {
17 17
     $this->comment(Inspiring::quote());
18 18
 })->describe('Display an inspiring quote');
Please login to merge, or discard this patch.
routes/api.php 1 patch
Spacing   +5 added lines, -5 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',
@@ -42,14 +42,14 @@  discard block
 block discarded – undo
42 42
         $api->post('reset', 'App\\Api\\V1\\Controllers\\ResetPasswordController@resetPassword');
43 43
         $api->get('reset/{token}', [
44 44
             'as' => 'password.reset',
45
-            function () {
45
+            function() {
46 46
             },
47 47
         ]);
48 48
     });
49 49
 
50 50
     // Protected routes
51
-    $api->group(['middleware' => 'auth:api'], function ($api) {
52
-        $api->get('protected', function () {
51
+    $api->group([ 'middleware' => 'auth:api' ], function($api) {
52
+        $api->get('protected', function() {
53 53
             return response()->json([
54 54
                 'message' => 'Access to protected resources granted! You are seeing this text as you provided the token correctly.',
55 55
             ]);
Please login to merge, or discard this patch.
server.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
  * @author   Taylor Otwell <[email protected]>
7 7
  */
8 8
 $uri = urldecode(
9
-    parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH)
9
+    parse_url($_SERVER[ 'REQUEST_URI' ], PHP_URL_PATH)
10 10
 );
11 11
 
12 12
 // This file allows us to emulate Apache's "mod_rewrite" functionality from the
Please login to merge, or discard this patch.
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.