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/CrudPanel.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,6 +3,7 @@  discard block
 block discarded – undo
3 3
 namespace Backpack\CRUD;
4 4
 
5 5
 use Backpack\CRUD\PanelTraits\Access;
6
+use Backpack\CRUD\PanelTraits\AutoFocus;
6 7
 use Backpack\CRUD\PanelTraits\AutoSet;
7 8
 use Backpack\CRUD\PanelTraits\Buttons;
8 9
 use Backpack\CRUD\PanelTraits\Columns;
@@ -16,7 +17,6 @@  discard block
 block discarded – undo
16 17
 use Backpack\CRUD\PanelTraits\Reorder;
17 18
 use Backpack\CRUD\PanelTraits\Update;
18 19
 use Backpack\CRUD\PanelTraits\ViewsAndRestoresRevisions;
19
-use Backpack\CRUD\PanelTraits\AutoFocus;
20 20
 
21 21
 class CrudPanel
22 22
 {
Please login to merge, or discard this patch.
src/PanelTraits/AutoFocus.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -11,6 +11,9 @@
 block discarded – undo
11 11
         return $this->autoFocusOnFirstField;
12 12
     }
13 13
 
14
+    /**
15
+     * @param boolean $value
16
+     */
14 17
     public function setAutoFocusOnFirstField($value)
15 18
     {
16 19
         return $this->autoFocusOnFirstField = (bool) $value;
Please login to merge, or discard this patch.