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 ( 2082ca...ea0287 )
by Cristian
08:53
created
src/app/Http/Controllers/Admin/PageCrudController.php 1 patch
Unused Use Statements   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -3,9 +3,8 @@
 block discarded – undo
3 3
 use Backpack\CRUD\app\Http\Controllers\CrudController;
4 4
 
5 5
 // VALIDATION: change the requests to match your own file names if you need form validation
6
-use Backpack\PageManager\app\Http\Requests\PageRequest as StoreRequest;
7
-use Backpack\PageManager\app\Http\Requests\PageRequest as UpdateRequest;
8 6
 use App\PageTemplates;
7
+use Backpack\PageManager\app\Http\Requests\PageRequest as UpdateRequest;
9 8
 
10 9
 class PageCrudController extends CrudController {
11 10
     use PageTemplates;
Please login to merge, or discard this patch.
src/app/Models/Page.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,10 +2,10 @@
 block discarded – undo
2 2
 
3 3
 namespace Backpack\PageManager\app\Models;
4 4
 
5
-use Illuminate\Database\Eloquent\Model;
6 5
 use Backpack\CRUD\CrudTrait;
7 6
 use Cviebrock\EloquentSluggable\SluggableInterface;
8 7
 use Cviebrock\EloquentSluggable\SluggableTrait;
8
+use Illuminate\Database\Eloquent\Model;
9 9
 
10 10
 class Page extends Model implements SluggableInterface
11 11
 {
Please login to merge, or discard this patch.
src/PageManagerServiceProvider.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@
 block discarded – undo
2 2
 
3 3
 namespace Backpack\PageManager;
4 4
 
5
-use Illuminate\Support\ServiceProvider;
6 5
 use Illuminate\Routing\Router;
6
+use Illuminate\Support\ServiceProvider;
7 7
 
8 8
 class PageManagerServiceProvider extends ServiceProvider
9 9
 {
Please login to merge, or discard this patch.