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 — main (#134)
by Mohammad Hafijul
16s
created
src/routes/backpack/settings.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,6 +14,6 @@
 block discarded – undo
14 14
     'namespace'  => 'Backpack\Settings\app\Http\Controllers',
15 15
     'prefix'     => config('backpack.base.route_prefix', 'admin'),
16 16
     'middleware' => ['web', backpack_middleware()],
17
-], function () {
17
+], function() {
18 18
     Route::crud(config('backpack.settings.route'), 'SettingCrudController');
19 19
 });
Please login to merge, or discard this patch.
src/app/Http/Controllers/SettingCrudController.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 setup()
14 14
     {
15
-        CRUD::setModel(config('backpack.settings.model',\Backpack\Settings\app\Models\Setting::class));
15
+        CRUD::setModel(config('backpack.settings.model', \Backpack\Settings\app\Models\Setting::class));
16 16
         CRUD::setEntityNameStrings(trans('backpack::settings.setting_singular'), trans('backpack::settings.setting_plural'));
17 17
         CRUD::setRoute(backpack_url(config('backpack.settings.route')));
18 18
     }
Please login to merge, or discard this patch.