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 (#289)
by Cristian
05:04 queued 02:30
created
src/PanelTraits/Tabs.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
     {
78 78
         $this->initTabs();
79 79
 
80
-        $this->tabs = $this->tabs->reject(function ($tab) use ($label) {
80
+        $this->tabs = $this->tabs->reject(function($tab) use ($label) {
81 81
             return $tab->label == $label;
82 82
         });
83 83
 
@@ -86,8 +86,8 @@  discard block
 block discarded – undo
86 86
 
87 87
     public function getCreateTabs()
88 88
     {
89
-        return $this->tabs->filter(function (&$tab) {
90
-            $tab->fields = $tab->fields->reject(function ($field) {
89
+        return $this->tabs->filter(function(&$tab) {
90
+            $tab->fields = $tab->fields->reject(function($field) {
91 91
                 return $field['method'] == 'update';
92 92
             });
93 93
 
@@ -97,8 +97,8 @@  discard block
 block discarded – undo
97 97
 
98 98
     public function getUpdateTabs()
99 99
     {
100
-        return $this->tabs->filter(function (&$tab) {
101
-            $tab->fields = $tab->fields->reject(function ($field) {
100
+        return $this->tabs->filter(function(&$tab) {
101
+            $tab->fields = $tab->fields->reject(function($field) {
102 102
                 return $field['method'] == 'create';
103 103
             });
104 104
 
Please login to merge, or discard this patch.