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
Pull Request — rewrite-laravel (#13)
by Oliver
06:33 queued 03:42
created
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.
database/factories/ModelFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
 */
13 13
 
14 14
 /** @var \Illuminate\Database\Eloquent\Factory $factory */
15
-$factory->define(App\Models\User::class, function (Faker\Generator $faker) {
15
+$factory->define(App\Models\User::class, function(Faker\Generator $faker) {
16 16
     static $password;
17 17
 
18 18
     return [
Please login to merge, or discard this patch.
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
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('users', function (Blueprint $table) {
16
+        Schema::create('users', function(Blueprint $table) {
17 17
             $table->increments('id');
18 18
             $table->string('name');
19 19
             $table->string('email')->unique();
Please login to merge, or discard this patch.
database/migrations/2016_10_22_131311_create_categories_table.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,14 +13,14 @@
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('categories', function (Blueprint $table) {
16
+        Schema::create('categories', function(Blueprint $table) {
17 17
             $table->increments('id');
18 18
             $table->integer('parent_id')->unsigned()->nullable();
19 19
             $table->string('name')->unique();
20 20
             $table->timestamps();
21 21
         });
22 22
 
23
-        Schema::table('categories', function (Blueprint $table) {
23
+        Schema::table('categories', function(Blueprint $table) {
24 24
             $table->foreign('parent_id')->references('id')->on('categories');
25 25
         });
26 26
     }
Please login to merge, or discard this patch.
database/migrations/2016_10_22_131352_create_transactions_table.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('transactions', function (Blueprint $table) {
16
+        Schema::create('transactions', function(Blueprint $table) {
17 17
             $table->increments('id');
18 18
             $table->integer('status_id')->unsigned();
19 19
             $table->integer('type_id')->unsigned();
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
             $table->timestamps();
28 28
         });
29 29
 
30
-        Schema::table('transactions', function (Blueprint $table) {
30
+        Schema::table('transactions', function(Blueprint $table) {
31 31
             $table->foreign('status_id')->references('id')->on('transaction_status');
32 32
             $table->foreign('type_id')->references('id')->on('transaction_types');
33 33
         });
Please login to merge, or discard this patch.
database/migrations/2016_10_22_131255_create_accounts_table.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
     public function up()
15 15
     {
16
-        Schema::create('accounts', function (Blueprint $table) {
16
+        Schema::create('accounts', function(Blueprint $table) {
17 17
             $table->increments('id');
18 18
             $table->string('name')->unique();
19 19
             $table->timestamps();
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
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('password_resets', function (Blueprint $table) {
16
+        Schema::create('password_resets', function(Blueprint $table) {
17 17
             $table->string('email')->index();
18 18
             $table->string('token')->index();
19 19
             $table->timestamp('created_at')->nullable();
Please login to merge, or discard this patch.
database/migrations/2016_10_22_131326_create_payees_table.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,14 +13,14 @@
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('payees', function (Blueprint $table) {
16
+        Schema::create('payees', function(Blueprint $table) {
17 17
             $table->increments('id');
18 18
             $table->integer('last_category_id')->unsigned()->nullable();
19 19
             $table->string('name')->unique();
20 20
             $table->timestamps();
21 21
         });
22 22
 
23
-        Schema::table('payees', function (Blueprint $table) {
23
+        Schema::table('payees', function(Blueprint $table) {
24 24
             $table->foreign('last_category_id')->references('id')->on('categories');
25 25
         });
26 26
     }
Please login to merge, or discard this patch.
app/Providers/BroadcastServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,8 +19,8 @@
 block discarded – undo
19 19
         /*
20 20
          * Authenticate the user's personal channel...
21 21
          */
22
-        Broadcast::channel('App.User.*', function ($user, $userId) {
23
-            return (int) $user->id === (int) $userId;
22
+        Broadcast::channel('App.User.*', function($user, $userId) {
23
+            return (int)$user->id === (int)$userId;
24 24
         });
25 25
     }
26 26
 }
Please login to merge, or discard this patch.