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 ( c7cd8c...38395f )
by Cristian
02:47
created
src/PanelTraits/ViewsAndRestoresRevisions.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
             $revisionDate = date('Y-m-d', strtotime((string) $history->created_at));
22 22
 
23 23
             // Be sure to instantiate the initial grouping array
24
-            if (! array_key_exists($revisionDate, $revisions)) {
24
+            if (!array_key_exists($revisionDate, $revisions)) {
25 25
                 $revisions[$revisionDate] = [];
26 26
             }
27 27
 
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
         $revision = Revision::findOrFail($revisionId);
48 48
 
49 49
         // Update the revisioned field with the old value
50
-        $this->update($entry->id, [ $revision->key => $revision->oldValue() ]);
50
+        $this->update($entry->id, [$revision->key => $revision->oldValue()]);
51 51
 
52 52
         // Reload the entry so we have the latest revisions
53 53
         $entry = $this->getEntry($id);
Please login to merge, or discard this patch.