Scrutinizer GitHub App not installed

We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.

Install GitHub App

Completed
Push — master ( e3a208...f2d716 )
by Cristian
02:33
created
src/database/migrations/2015_08_04_131614_create_settings_table.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
     public function up()
14 14
     {
15
-        Schema::create('settings', function (Blueprint $table) {
15
+        Schema::create('settings', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->string('key');
18 18
             $table->string('name');
Please login to merge, or discard this patch.
src/SettingsServiceProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -51,9 +51,9 @@  discard block
 block discarded – undo
51 51
      */
52 52
     public function setupRoutes(Router $router)
53 53
     {
54
-        $router->group(['namespace' => 'Backpack\Settings\app\Http\Controllers'], function ($router) {
54
+        $router->group(['namespace' => 'Backpack\Settings\app\Http\Controllers'], function($router) {
55 55
             // Admin Interface Routes
56
-            Route::group(['prefix' => 'admin', 'middleware' => ['web', 'admin']], function () {
56
+            Route::group(['prefix' => 'admin', 'middleware' => ['web', 'admin']], function() {
57 57
                 // Settings
58 58
                 Route::resource('setting', 'SettingCrudController');
59 59
             });
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
 
79 79
     private function registerSettings()
80 80
     {
81
-        $this->app->bind('settings', function ($app) {
81
+        $this->app->bind('settings', function($app) {
82 82
             return new Settings($app);
83 83
         });
84 84
     }
Please login to merge, or discard this patch.