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 ( 0286dd...3bbc2c )
by Cristian
01:45
created
src/app/Http/Controllers/Admin/ArticleCrudController.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 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\NewsCRUD\app\Http\Requests\ArticleRequest as StoreRequest;
7 6
 use Backpack\NewsCRUD\app\Http\Requests\ArticleRequest as UpdateRequest;
8 7
 
9 8
 class ArticleCrudController extends CrudController {
Please login to merge, or discard this patch.
src/app/Http/Controllers/Admin/CategoryCrudController.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 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\NewsCRUD\app\Http\Requests\CategoryRequest as StoreRequest;
7 6
 use Backpack\NewsCRUD\app\Http\Requests\CategoryRequest as UpdateRequest;
8 7
 
9 8
 class CategoryCrudController extends CrudController {
Please login to merge, or discard this patch.
src/app/Http/Controllers/Admin/TagCrudController.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 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\NewsCRUD\app\Http\Requests\TagRequest as StoreRequest;
7 6
 use Backpack\NewsCRUD\app\Http\Requests\TagRequest as UpdateRequest;
8 7
 
9 8
 class TagCrudController extends CrudController {
Please login to merge, or discard this patch.
src/app/Http/Requests/TagRequest.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -2,8 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace Backpack\NewsCRUD\app\Http\Requests;
4 4
 
5
-use App\Http\Requests\Request;
6
-
7 5
 class TagRequest extends \Backpack\CRUD\app\Http\Requests\CrudRequest
8 6
 {
9 7
     /**
Please login to merge, or discard this patch.
src/app/Models/Tag.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\NewsCRUD\app\Models;
4 4
 
5
-use Illuminate\Database\Eloquent\Model;
6 5
 use Backpack\CRUD\CrudTrait;
6
+use Illuminate\Database\Eloquent\Model;
7 7
 
8 8
 class Tag extends Model
9 9
 {
Please login to merge, or discard this patch.
src/NewsCRUDServiceProvider.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\NewsCRUD;
4 4
 
5
-use Illuminate\Support\ServiceProvider;
6 5
 use Illuminate\Routing\Router;
6
+use Illuminate\Support\ServiceProvider;
7 7
 
8 8
 class NewsCRUDServiceProvider extends ServiceProvider
9 9
 {
Please login to merge, or discard this patch.
src/app/Http/Requests/CategoryRequest.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -2,8 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace Backpack\NewsCRUD\app\Http\Requests;
4 4
 
5
-use App\Http\Requests\Request;
6
-
7 5
 class TagRequest extends \Backpack\CRUD\app\Http\Requests\CrudRequest
8 6
 {
9 7
     /**
Please login to merge, or discard this patch.
src/app/Models/Article.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\NewsCRUD\app\Models;
4 4
 
5
-use Illuminate\Database\Eloquent\Model;
6 5
 use Backpack\CRUD\CrudTrait;
6
+use Illuminate\Database\Eloquent\Model;
7 7
 
8 8
 class Tag extends Model
9 9
 {
Please login to merge, or discard this patch.
src/app/Models/Category.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\NewsCRUD\app\Models;
4 4
 
5
-use Illuminate\Database\Eloquent\Model;
6 5
 use Backpack\CRUD\CrudTrait;
6
+use Illuminate\Database\Eloquent\Model;
7 7
 
8 8
 class Tag extends Model
9 9
 {
Please login to merge, or discard this patch.