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
Branch master (1b841e)
by Ghitu
02:03
created
src/app/Http/Controllers/LanguageCrudController.php 1 patch
Unused Use Statements   +1 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,14 +1,10 @@
 block discarded – undo
1 1
 <?php namespace Backpack\LangFileManager\app\Http\Controllers;
2 2
 
3
-use App\Http\Requests;
4
-use App\Http\Controllers\Controller;
5 3
 use Backpack\CRUD\app\Http\Controllers\CrudController;
6
-use Backpack\LangFileManager\app\Services\LangFiles;
7 4
 use Backpack\LangFileManager\app\Models\Language;
8
-
5
+use Backpack\LangFileManager\app\Services\LangFiles;
9 6
 use Illuminate\Http\Request;
10 7
 // VALIDATION: change the requests to match your own file names if you need form validation
11
-use Backpack\LangFileManager\app\Http\Requests\LanguageRequest as StoreRequest;
12 8
 use Backpack\LangFileManager\app\Http\Requests\LanguageRequest as UpdateRequest;
13 9
 
14 10
 class LanguageCrudController extends CrudController {
Please login to merge, or discard this patch.
src/app/Http/Requests/LanguageRequest.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,5 @@
 block discarded – undo
1 1
 <?php namespace Backpack\TranslationManager\app\Http\Requests;
2 2
 
3
-use App\Http\Requests\Request;
4 3
 use Backpack\CRUD\app\Http\Requests\CrudRequest as CrudRequest;
5 4
 
6 5
 class LanguageRequest extends CrudRequest {
Please login to merge, or discard this patch.
src/app/Models/Language.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php namespace Backpack\LangFileManager\app\Models;
2 2
 
3
-use Illuminate\Database\Eloquent\Model;
4 3
 use Backpack\CRUD\CrudTrait;
4
+use Illuminate\Database\Eloquent\Model;
5 5
 
6 6
 class Language extends Model {
7 7
 
Please login to merge, or discard this patch.
src/LangFileManagerServiceProvider.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php namespace Backpack\LangFileManager;
2 2
 
3
-use Illuminate\Support\ServiceProvider;
4
-use Illuminate\Routing\Router;
5 3
 use Backpack\LangFileManager\app\Services\LangFiles;
4
+use Illuminate\Routing\Router;
5
+use Illuminate\Support\ServiceProvider;
6 6
 
7 7
 class LangFileManagerServiceProvider extends ServiceProvider
8 8
 {
Please login to merge, or discard this patch.