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 ( 8dc2c5...2a0446 )
by Cristian
03:09
created
src/PanelTraits/Buttons.php 1 patch
Doc Comments   +12 added lines patch added patch discarded remove patch
@@ -62,6 +62,9 @@  discard block
 block discarded – undo
62 62
         $this->addButton($stack, $name, 'model_function', $model_function_name, $position);
63 63
     }
64 64
 
65
+    /**
66
+     * @param string $view
67
+     */
65 68
     public function addButtonFromView($stack, $name, $view, $position = false)
66 69
     {
67 70
         $view = 'crud::buttons.'.$view;
@@ -139,6 +142,9 @@  discard block
 block discarded – undo
139 142
         $this->buttons = collect([]);
140 143
     }
141 144
 
145
+    /**
146
+     * @param string $stack
147
+     */
142 148
     public function removeAllButtonsFromStack($stack)
143 149
     {
144 150
         $this->buttons = $this->buttons->reject(function ($button) use ($stack) {
@@ -161,6 +167,12 @@  discard block
 block discarded – undo
161 167
     public $type = 'view';
162 168
     public $content;
163 169
 
170
+    /**
171
+     * @param string $stack
172
+     * @param string $name
173
+     * @param string $type
174
+     * @param string $content
175
+     */
164 176
     public function __construct($stack, $name, $type, $content)
165 177
     {
166 178
         $this->stack = $stack;
Please login to merge, or discard this patch.