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 (#1935)
by Cristian
08:51 queued 06:38
created
src/app/Library/CrudPanel/Traits/AutoFocus.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -12,6 +12,9 @@
 block discarded – undo
12 12
         return $this->getOperationSetting('autoFocusOnFirstField');
13 13
     }
14 14
 
15
+    /**
16
+     * @param boolean $value
17
+     */
15 18
     public function setAutoFocusOnFirstField($value)
16 19
     {
17 20
         return $this->setOperationSetting('autoFocusOnFirstField', (bool) $value);
Please login to merge, or discard this patch.
src/app/Library/CrudPanel/Traits/Create.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -159,7 +159,7 @@
 block discarded – undo
159 159
      * @param \Illuminate\Database\Eloquent\Model $item          The current CRUD model.
160 160
      * @param array                               $formattedData The form data.
161 161
      *
162
-     * @return bool|null
162
+     * @return false|null
163 163
      */
164 164
     private function createRelationsForItem($item, $formattedData)
165 165
     {
Please login to merge, or discard this patch.
src/app/Library/CrudPanel/Traits/Delete.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
      *
16 16
      * @param  int $id The id of the item to be deleted.
17 17
      *
18
-     * @return bool True if the item was deleted.
18
+     * @return string True if the item was deleted.
19 19
      *
20 20
      * @throws \Illuminate\Database\Eloquent\ModelNotFoundException if the model was not found.
21 21
      *
Please login to merge, or discard this patch.
src/app/Library/CrudPanel/Traits/FakeFields.php 1 patch
Doc Comments   -2 removed lines patch added patch discarded remove patch
@@ -10,8 +10,6 @@
 block discarded – undo
10 10
      * plus the '_token' and 'redirect_after_save' variables.
11 11
      *
12 12
      * @param array    $requestInput The request input.
13
-     * @param string   $form         The CRUD form. Can be 'create' or 'update' . Default is 'create'.
14
-     * @param int|bool $id           The CRUD entry id in the case of the 'update' form.
15 13
      *
16 14
      * @see \Illuminate\Http\Request::all() For an example on how to get the request input.
17 15
      *
Please login to merge, or discard this patch.
src/app/Library/CrudPanel/Traits/Fields.php 1 patch
Doc Comments   -7 removed lines patch added patch discarded remove patch
@@ -22,7 +22,6 @@  discard block
 block discarded – undo
22 22
      * Add a field to the create/update form or both.
23 23
      *
24 24
      * @param string|array $field The new field.
25
-     * @param string       $form  The CRUD form. Can be 'create', 'update' or 'both'. Default is 'both'.
26 25
      *
27 26
      * @return self
28 27
      */
@@ -70,7 +69,6 @@  discard block
 block discarded – undo
70 69
      * Add multiple fields to the create/update form or both.
71 70
      *
72 71
      * @param array  $fields The new fields.
73
-     * @param string $form   The CRUD form. Can be 'create', 'update' or 'both'. Default is 'both'.
74 72
      */
75 73
     public function addFields($fields)
76 74
     {
@@ -85,7 +83,6 @@  discard block
 block discarded – undo
85 83
      * Move the most recently added field after the given target field.
86 84
      *
87 85
      * @param string $targetFieldName The target field name.
88
-     * @param string $form            The CRUD form. Can be 'create', 'update' or 'both'. Default is 'both'.
89 86
      */
90 87
     public function afterField($targetFieldName)
91 88
     {
@@ -98,7 +95,6 @@  discard block
 block discarded – undo
98 95
      * Move the most recently added field before the given target field.
99 96
      *
100 97
      * @param string $targetFieldName The target field name.
101
-     * @param string $form            The CRUD form. Can be 'create', 'update' or 'both'. Default is 'both'.
102 98
      */
103 99
     public function beforeField($targetFieldName)
104 100
     {
@@ -141,7 +137,6 @@  discard block
 block discarded – undo
141 137
      * Remove a certain field from the create/update/both forms by its name.
142 138
      *
143 139
      * @param string $name Field name (as defined with the addField() procedure)
144
-     * @param string $form update/create/both
145 140
      */
146 141
     public function removeField($name)
147 142
     {
@@ -330,8 +325,6 @@  discard block
 block discarded – undo
330 325
      * Check if the create/update form has upload fields.
331 326
      * Upload fields are the ones that have "upload" => true defined on them.
332 327
      *
333
-     * @param  string   $form create/update/both - defaults to 'both'
334
-     * @param  bool|int $id   id of the entity - defaults to false
335 328
      *
336 329
      * @return bool
337 330
      */
Please login to merge, or discard this patch.
src/app/Library/CrudPanel/Traits/Operations.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
     /**
57 57
      * Convenience method to make sure all calls are made to a particular operation.
58 58
      *
59
-     * @param  string|array     $operation      Operation name in string form
59
+     * @param  string|array     $operations      Operation name in string form
60 60
      * @param  bool|\Closure    $closure        Code that calls CrudPanel methods.
61 61
      * @return void
62 62
      */
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
      * Allc configurations are put inside that operation's namespace.
71 71
      * Ex: show.configuration.
72 72
      *
73
-     * @param  string|array     $operation      Operation name in string form
73
+     * @param  string|array     $operations      Operation name in string form
74 74
      * @param  bool|\Closure    $closure        Code that calls CrudPanel methods.
75 75
      * @return void
76 76
      */
Please login to merge, or discard this patch.
src/app/Library/CrudPanel/Traits/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/Library/CrudPanel/Traits/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/app/Library/CrudPanel/Traits/Settings.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -102,7 +102,7 @@
 block discarded – undo
102 102
      * Defaults to the current operation.
103 103
      *
104 104
      * @param  string   $key   Has no operation prepended. (ex: exportButtons)
105
-     * @return mixed      [description]
105
+     * @return boolean      [description]
106 106
      */
107 107
     public function hasOperationSetting(string $key, $operation = null)
108 108
     {
Please login to merge, or discard this patch.