We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -143,7 +143,7 @@ discard block |
||
143 | 143 | /** |
144 | 144 | * Move the most recently added column after the given target column. |
145 | 145 | * |
146 | - * @param string|array $targetColumn The target column name or array. |
|
146 | + * @param string $targetColumn The target column name or array. |
|
147 | 147 | */ |
148 | 148 | public function afterColumn($targetColumn) |
149 | 149 | { |
@@ -162,7 +162,7 @@ discard block |
||
162 | 162 | |
163 | 163 | /** |
164 | 164 | * Move this column to be first in the columns list. |
165 | - * @return bool|null |
|
165 | + * @return false|null |
|
166 | 166 | */ |
167 | 167 | public function makeFirstColumn() |
168 | 168 | { |
@@ -281,7 +281,7 @@ discard block |
||
281 | 281 | /** |
282 | 282 | * Change attributes for multiple columns. |
283 | 283 | * |
284 | - * @param array $columns |
|
284 | + * @param string[] $columns |
|
285 | 285 | * @param array $attributes |
286 | 286 | */ |
287 | 287 | public function setColumnsDetails($columns, $attributes) |
@@ -159,7 +159,7 @@ |
||
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 | { |
@@ -9,7 +9,7 @@ |
||
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 | */ |
@@ -127,7 +127,7 @@ discard block |
||
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 |
||
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 | { |
@@ -35,6 +35,7 @@ discard block |
||
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 |
||
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 |