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 (#141)
by Owen
03:09
created
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.