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
Pull Request — master (#17)
by
unknown
02:10
created
src/SettingsServiceProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -39,14 +39,14 @@  discard block
 block discarded – undo
39 39
      */
40 40
     public function setupRoutes(Router $router)
41 41
     {
42
-        $router->group(['namespace' => 'Backpack\Settings\app\Http\Controllers'], function ($router) {
42
+        $router->group(['namespace' => 'Backpack\Settings\app\Http\Controllers'], function($router) {
43 43
             // Admin Interface Routes
44 44
             Route::group(
45 45
                 [
46 46
                     'prefix' => config('backpack.base.route_prefix', 'admin'),
47 47
                     'middleware' => ['web', 'admin'],
48 48
                 ],
49
-                function () {
49
+                function() {
50 50
                     Route::resource('setting', 'SettingCrudController');
51 51
                 }
52 52
             );
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
     public function register()
62 62
     {
63 63
         $this->setupRoutes($this->app->router);
64
-        $this->app->singleton('settings', function () {
64
+        $this->app->singleton('settings', function() {
65 65
             $store = [];
66 66
             if (count(Schema::getColumnListing('settings'))) {
67 67
                 // get all settings from the database
Please login to merge, or discard this patch.