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
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
 
32 32
         // call the setup function inside this closure to also have the request there
33 33
         // this way, developers can use things stored in session (auth variables, etc)
34
-        $this->middleware(function ($request, $next) {
34
+        $this->middleware(function($request, $next) {
35 35
             $this->setup();
36 36
             return $next($request);
37 37
         });
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
         $this->data['title'] = ucfirst($this->crud->entity_name_plural);
57 57
 
58 58
         // get all entries if AJAX is not enabled
59
-        if (! $this->data['crud']->ajaxTable()) {
59
+        if (!$this->data['crud']->ajaxTable()) {
60 60
             $this->data['entries'] = $this->data['crud']->getEntries();
61 61
         }
62 62
 
Please login to merge, or discard this patch.
src/app/Http/Controllers/CrudFeatures/Revisions.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
         // is somewhat superfluous.. however if we are POSTing, it makes sense to actually have data to post.
45 45
         // Perhaps the route shoud be better named to reflect this (e.g. just /model/{id}/revisions) (??)
46 46
         $revisionId = \Request::input('revision_id', false);
47
-        if (! $revisionId) {
47
+        if (!$revisionId) {
48 48
             abort(500, 'Can\'t restore revision without revision_id');
49 49
         } else {
50 50
             $this->crud->restoreRevision($id, $revisionId); // do the update
Please login to merge, or discard this patch.
src/app/Http/Controllers/CrudFeatures/Reorder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -174,7 +174,7 @@
 block discarded – undo
174 174
     {
175 175
         $this->crud->hasAccessOrFail('reorder');
176 176
 
177
-        if (! $this->crud->isReorderEnabled()) {
177
+        if (!$this->crud->isReorderEnabled()) {
178 178
             abort(403, 'Reorder is disabled.');
179 179
         }
180 180
 
Please login to merge, or discard this patch.
src/app/Http/Controllers/CrudFeatures/AjaxTable.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
 
15 15
         // crate an array with the names of the searchable columns
16 16
         $columns = collect($this->crud->columns)
17
-                    ->reject(function ($column, $key) {
17
+                    ->reject(function($column, $key) {
18 18
                         // the select_multiple columns are not searchable
19 19
                         return isset($column['type']) && $column['type'] == 'select_multiple';
20 20
                     })
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
         $dataTable = new \LiveControl\EloquentDataTable\DataTable($this->crud->query, $columns);
28 28
 
29 29
         // make the datatable use the column types instead of just echoing the text
30
-        $dataTable->setFormatRowFunction(function ($entry) {
30
+        $dataTable->setFormatRowFunction(function($entry) {
31 31
             // get the actual HTML for each row's cell
32 32
             $row_items = $this->crud->getRowViews($entry, $this->crud);
33 33
 
Please login to merge, or discard this patch.