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
Push — rewrite-laravel ( eaffaa...c55a9d )
by Oliver
03:01
created
database/migrations/2017_06_15_075047_create_settings_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('settings', function (Blueprint $table) {
16
+        Schema::create('settings', function(Blueprint $table) {
17 17
             $table->increments('id');
18 18
             $table->string('scope');
19 19
             $table->json('data');
Please login to merge, or discard this patch.
tests/UsesDatabase.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
         // The database needs to be deleted before the application gets boted
18 18
         // to avoid having the database in a weird read-only state.
19 19
 
20
-        if (! $force && static::$migrated) {
20
+        if (!$force && static::$migrated) {
21 21
             return;
22 22
         }
23 23
 
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
             $database->connection($name)->beginTransaction();
51 51
         }
52 52
 
53
-        $this->beforeApplicationDestroyed(function () use ($database) {
53
+        $this->beforeApplicationDestroyed(function() use ($database) {
54 54
             foreach ($this->connectionsToTransact() as $name) {
55 55
                 $database->connection($name)->rollBack();
56 56
             }
Please login to merge, or discard this patch.
tests/Feature/TestCase.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
 
21 21
         parent::setUp();
22 22
 
23
-        $this->setUpDatabase(function () {
23
+        $this->setUpDatabase(function() {
24 24
             $this->artisan('db:seed', ['--class' => UsersTableSeeder::class]);
25 25
         });
26 26
 
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
@@ -19,6 +19,6 @@
 block discarded – undo
19 19
 Route::get('settings', 'SettingController@index');
20 20
 Route::post('settings', 'SettingController@update');
21 21
 
22
-Route::group(['prefix' => '/admin'], function () {
22
+Route::group(['prefix' => '/admin'], function() {
23 23
     Route::get('logs', '\Rap2hpoutre\LaravelLogViewer\LogViewerController@index');
24 24
 });
Please login to merge, or discard this patch.