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 ( 7a24d5...09959f )
by Cristian
02:56
created
src/app/Http/Controllers/CrudController.php 1 patch
Unused Use Statements   +2 added lines, -5 removed lines patch added patch discarded remove patch
@@ -2,14 +2,11 @@
 block discarded – undo
2 2
 
3 3
 namespace Backpack\CRUD\app\Http\Controllers;
4 4
 
5
+use Backpack\CRUD\CrudPanel;
6
+use Backpack\CRUD\app\Http\Requests\CrudRequest as UpdateRequest;
5 7
 use Illuminate\Foundation\Bus\DispatchesJobs;
6 8
 use Illuminate\Foundation\Validation\ValidatesRequests;
7 9
 use Illuminate\Routing\Controller as BaseController;
8
-use Illuminate\Support\Facades\Form as Form;
9
-
10
-use Backpack\CRUD\app\Http\Requests\CrudRequest as StoreRequest;
11
-use Backpack\CRUD\app\Http\Requests\CrudRequest as UpdateRequest;
12
-use Backpack\CRUD\CrudPanel;
13 10
 
14 11
 // CRUD Traits for non-core features
15 12
 use Backpack\CRUD\app\Http\Controllers\CrudFeatures\AjaxTable;
Please login to merge, or discard this patch.
src/app/Http/Controllers/CrudFeatures/Reorder.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
 
5 5
 trait Reorder {
6 6
 
7
-	/**
7
+    /**
8 8
      *  Reorder the items in the database using the Nested Set pattern.
9 9
      *
10 10
      *	Database columns needed: id, parent_id, lft, rgt, depth, name/title
Please login to merge, or discard this patch.
src/app/Http/Controllers/CrudFeatures/AjaxTable.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
 
5 5
 trait AjaxTable {
6 6
 
7
-	/**
7
+    /**
8 8
      * Respond with the JSON of one or more rows, depending on the POST parameters.
9 9
      * @return JSON Array of cells in HTML form.
10 10
      */
Please login to merge, or discard this patch.
src/app/Http/Controllers/CrudFeatures/ShowDetailsRow.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
 
5 5
 trait ShowDetailsRow {
6 6
 
7
-	/**
7
+    /**
8 8
      * Used with AJAX in the list view (datatables) to show extra information about that row that didn't fit in the table.
9 9
      * It defaults to showing some dummy text.
10 10
      *
Please login to merge, or discard this patch.