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 (#1471)
by Cristian
06:59 queued 01:58
created
src/PanelTraits/Columns.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
     /**
133 133
      * Move the most recently added column after the given target column.
134 134
      *
135
-     * @param string|array $targetColumn The target column name or array.
135
+     * @param string $targetColumn The target column name or array.
136 136
      */
137 137
     public function afterColumn($targetColumn)
138 138
     {
@@ -278,6 +278,7 @@  discard block
 block discarded – undo
278 278
      *
279 279
      * @param [string] Column name.
280 280
      * @param [attributes and values array]
281
+     * @param string $column
281 282
      */
282 283
     public function setColumnDetails($column, $attributes)
283 284
     {
Please login to merge, or discard this patch.
src/PanelTraits/Search.php 2 patches
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -119,10 +119,10 @@
 block discarded – undo
119 119
         // add the details_row button to the first column
120 120
         if ($this->details_row) {
121 121
             $details_row_button = \View::make('crud::columns.details_row_button')
122
-                                           ->with('crud', $this)
123
-                                           ->with('entry', $entry)
124
-                                           ->with('row_number', $rowNumber)
125
-                                           ->render();
122
+                                            ->with('crud', $this)
123
+                                            ->with('entry', $entry)
124
+                                            ->with('row_number', $rowNumber)
125
+                                            ->render();
126 126
             $row_items[0] = $details_row_button.$row_items[0];
127 127
         }
128 128
 
Please login to merge, or discard this patch.
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -169,7 +169,7 @@
 block discarded – undo
169 169
 
170 170
     /**
171 171
      * Render the given view.
172
-     * @param $view
172
+     * @param string $view
173 173
      * @param $column
174 174
      * @param $entry
175 175
      * @param  int The number shown to the user as row number (index);
Please login to merge, or discard this patch.