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 — master (#1937)
by Cristian
03:15 queued 01:17
created
src/app/Http/Controllers/Operations/CreateOperation.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\CRUD\app\Http\Controllers\Operations;
4 4
 
5
-use Illuminate\Support\Facades\Route;
6 5
 use Illuminate\Http\Request as StoreRequest;
6
+use Illuminate\Support\Facades\Route;
7 7
 
8 8
 trait CreateOperation
9 9
 {
Please login to merge, or discard this patch.
src/app/Http/Controllers/Operations/UpdateOperation.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\CRUD\app\Http\Controllers\Operations;
4 4
 
5
-use Illuminate\Support\Facades\Route;
6 5
 use Illuminate\Http\Request as UpdateRequest;
6
+use Illuminate\Support\Facades\Route;
7 7
 
8 8
 trait UpdateOperation
9 9
 {
Please login to merge, or discard this patch.
src/app/Http/Controllers/Operations/BulkCloneOperation.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,6 @@
 block discarded – undo
24 24
     /**
25 25
      * Create duplicates of multiple entries in the datatabase.
26 26
      *
27
-     * @param int $id
28 27
      *
29 28
      * @return Response
30 29
      */
Please login to merge, or discard this patch.
src/app/Http/Controllers/Operations/CloneOperation.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
      *
27 27
      * @param int $id
28 28
      *
29
-     * @return Response
29
+     * @return string
30 30
      */
31 31
     public function clone($id)
32 32
     {
Please login to merge, or discard this patch.
src/app/Http/Controllers/CrudController.php 2 patches
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,6 @@
 block discarded – undo
50 50
      *
51 51
      * @param  string $name       Name of the current entity (singular).
52 52
      * @param  string $controller Name of the current controller.
53
-     * @param  array  $options    Options for the route (optional).
54 53
      */
55 54
     public function routes($name, $controller)
56 55
     {
Please login to merge, or discard this patch.
Unused Use Statements   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -3,10 +3,9 @@
 block discarded – undo
3 3
 namespace Backpack\CRUD\app\Http\Controllers;
4 4
 
5 5
 use Backpack\CRUD\CrudPanel;
6
-use Illuminate\Http\Request;
7 6
 use Illuminate\Foundation\Bus\DispatchesJobs;
8
-use Illuminate\Routing\Controller as BaseController;
9 7
 use Illuminate\Foundation\Validation\ValidatesRequests;
8
+use Illuminate\Routing\Controller as BaseController;
10 9
 
11 10
 class CrudController extends BaseController
12 11
 {
Please login to merge, or discard this patch.