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 (#1945)
by Mike
03:19
created
src/PanelTraits/FakeColumns.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
      * been found.
10 10
      *
11 11
      * @param string   $form The CRUD form. Can be 'create', 'update' or 'both'. Default is 'create'.
12
-     * @param int|bool $id   Optional entity ID needed in the case of the update form.
12
+     * @param integer $id   Optional entity ID needed in the case of the update form.
13 13
      *
14 14
      * @return array The fake columns array.
15 15
      */
Please login to merge, or discard this patch.
src/PanelTraits/Read.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
      * Upload fields are the ones that have "upload" => true defined on them.
128 128
      *
129 129
      * @param  string   $form create/update/both - defaults to 'both'
130
-     * @param  bool|int $id   id of the entity - defaults to false
130
+     * @param  integer $id   id of the entity - defaults to false
131 131
      *
132 132
      * @return bool
133 133
      */
@@ -162,6 +162,7 @@  discard block
 block discarded – undo
162 162
 
163 163
     /**
164 164
      * Set the number of rows that should be show on the list view.
165
+     * @param integer $value
165 166
      */
166 167
     public function setDefaultPageLength($value)
167 168
     {
Please login to merge, or discard this patch.
src/PanelTraits/Search.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,6 +35,7 @@  discard block
 block discarded – undo
35 35
 
36 36
     /**
37 37
      * Apply the search logic for each CRUD column.
38
+     * @param string $searchTerm
38 39
      */
39 40
     public function applySearchLogicForColumn($query, $column, $searchTerm)
40 41
     {
@@ -230,7 +231,7 @@  discard block
 block discarded – undo
230 231
      *
231 232
      * @param string   $view
232 233
      * @param array    $column
233
-     * @param object   $entry
234
+     * @param \Illuminate\Database\Eloquent\Model   $entry
234 235
      * @param bool|int $rowNumber The number shown to the user as row number (index)
235 236
      *
236 237
      * @return string
Please login to merge, or discard this patch.
src/PanelTraits/Views.php 1 patch
Doc Comments   +7 added lines, -1 removed lines patch added patch discarded remove patch
@@ -157,7 +157,7 @@  discard block
 block discarded – undo
157 157
 
158 158
     /**
159 159
      * Sets the edit content class.
160
-     * @param string $editContentClass content class
160
+     * @param string $showContentClass content class
161 161
      */
162 162
     public function setShowContentClass(string $showContentClass)
163 163
     {
@@ -332,6 +332,9 @@  discard block
 block discarded – undo
332 332
         return $this->getShowView();
333 333
     }
334 334
 
335
+    /**
336
+     * @param string $view
337
+     */
335 338
     public function setPreviewView($view)
336 339
     {
337 340
         return $this->setShowView($view);
@@ -342,6 +345,9 @@  discard block
 block discarded – undo
342 345
         return $this->getEditView();
343 346
     }
344 347
 
348
+    /**
349
+     * @param string $view
350
+     */
345 351
     public function setUpdateView($view)
346 352
     {
347 353
         return $this->setEditView($view);
Please login to merge, or discard this patch.
src/PanelTraits/Query.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@
 block discarded – undo
62 62
      * Order results of the query in a custom way.
63 63
      *
64 64
      * @param  array $column           Column array with all attributes
65
-     * @param  string $column_direction ASC or DESC
65
+     * @param  string $columnDirection ASC or DESC
66 66
      *
67 67
      * @return \Illuminate\Database\Eloquent\Builder
68 68
      */
Please login to merge, or discard this patch.
src/app/Http/Controllers/Operations/CloneOperation.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
      *
10 10
      * @param int $id
11 11
      *
12
-     * @return Response
12
+     * @return string
13 13
      */
14 14
     public function clone($id)
15 15
     {
@@ -23,7 +23,6 @@  discard block
 block discarded – undo
23 23
     /**
24 24
      * Create duplicates of multiple entries in the datatabase.
25 25
      *
26
-     * @param int $id
27 26
      *
28 27
      * @return Response
29 28
      */
Please login to merge, or discard this patch.