We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -316,6 +316,7 @@ discard block |
||
| 316 | 316 | * Delete a row from the database. |
| 317 | 317 | * |
| 318 | 318 | * @param [int] The id of the item to be deleted. |
| 319 | + * @param integer $id |
|
| 319 | 320 | * |
| 320 | 321 | * @return [bool] Deletion confirmation. |
| 321 | 322 | * |
@@ -429,8 +430,9 @@ discard block |
||
| 429 | 430 | * Check if a permission is enabled for a Crud Panel. Fail if not. |
| 430 | 431 | * |
| 431 | 432 | * @param [string] Permission. |
| 433 | + * @param string $permission |
|
| 432 | 434 | * |
| 433 | - * @return bool |
|
| 435 | + * @return boolean|null |
|
| 434 | 436 | */ |
| 435 | 437 | public function hasAccessOrFail($permission) |
| 436 | 438 | { |
@@ -454,6 +456,7 @@ discard block |
||
| 454 | 456 | * All Create-Read-Update-Delete operations are done using that Eloquent Collection. |
| 455 | 457 | * |
| 456 | 458 | * @param [string] Full model namespace. Ex: App\Models\Article |
| 459 | + * @param string $model_namespace |
|
| 457 | 460 | */ |
| 458 | 461 | public function setModel($model_namespace) |
| 459 | 462 | { |
@@ -483,6 +486,7 @@ discard block |
||
| 483 | 486 | * |
| 484 | 487 | * @param [string] Route name. |
| 485 | 488 | * @param [array] Parameters. |
| 489 | + * @param string $route |
|
| 486 | 490 | */ |
| 487 | 491 | public function setRoute($route) |
| 488 | 492 | { |
@@ -517,7 +521,7 @@ discard block |
||
| 517 | 521 | * - $this->crud->setRouteName('admin.article') |
| 518 | 522 | * - $this->crud->route = "admin/article" |
| 519 | 523 | * |
| 520 | - * @return [string] |
|
| 524 | + * @return string |
|
| 521 | 525 | */ |
| 522 | 526 | public function getRoute() |
| 523 | 527 | { |
@@ -530,6 +534,8 @@ discard block |
||
| 530 | 534 | * |
| 531 | 535 | * @param [string] Entity name, in singular. Ex: article |
| 532 | 536 | * @param [string] Entity name, in plural. Ex: articles |
| 537 | + * @param string $singular |
|
| 538 | + * @param string $plural |
|
| 533 | 539 | */ |
| 534 | 540 | public function setEntityNameStrings($singular, $plural) |
| 535 | 541 | { |
@@ -708,8 +714,6 @@ discard block |
||
| 708 | 714 | /** |
| 709 | 715 | * Add a field to the create/update form or both. |
| 710 | 716 | * |
| 711 | - * @param [string] $name Field name (the column name in the db in most cases) |
|
| 712 | - * @param [array] $options Field-type-specific information. |
|
| 713 | 717 | * @param string $form The form to add the field to (create/update/both) |
| 714 | 718 | */ |
| 715 | 719 | public function addField($field, $form = 'both') |
@@ -1257,6 +1261,9 @@ discard block |
||
| 1257 | 1261 | $this->setSort('fields', (array) $order); |
| 1258 | 1262 | } |
| 1259 | 1263 | |
| 1264 | + /** |
|
| 1265 | + * @param string $type |
|
| 1266 | + */ |
|
| 1260 | 1267 | public function sync($type, $fields, $attributes) |
| 1261 | 1268 | { |
| 1262 | 1269 | if (!empty($this->{$type})) { |
@@ -1270,11 +1277,17 @@ discard block |
||
| 1270 | 1277 | } |
| 1271 | 1278 | } |
| 1272 | 1279 | |
| 1280 | + /** |
|
| 1281 | + * @param string $items |
|
| 1282 | + */ |
|
| 1273 | 1283 | public function setSort($items, $order) |
| 1274 | 1284 | { |
| 1275 | 1285 | $this->sort[$items] = $order; |
| 1276 | 1286 | } |
| 1277 | 1287 | |
| 1288 | + /** |
|
| 1289 | + * @param string $items |
|
| 1290 | + */ |
|
| 1278 | 1291 | public function sort($items) |
| 1279 | 1292 | { |
| 1280 | 1293 | if (array_key_exists($items, $this->sort)) { |
@@ -165,7 +165,7 @@ discard block |
||
| 165 | 165 | // TODO |
| 166 | 166 | } |
| 167 | 167 | |
| 168 | - /* |
|
| 168 | + /* |
|
| 169 | 169 | |-------------------------------------------------------------------------- |
| 170 | 170 | | READ |
| 171 | 171 | |-------------------------------------------------------------------------- |
@@ -246,7 +246,7 @@ discard block |
||
| 246 | 246 | $this->details_row = false; |
| 247 | 247 | } |
| 248 | 248 | |
| 249 | - /* |
|
| 249 | + /* |
|
| 250 | 250 | |-------------------------------------------------------------------------- |
| 251 | 251 | | UPDATE |
| 252 | 252 | |-------------------------------------------------------------------------- |
@@ -306,7 +306,7 @@ discard block |
||
| 306 | 306 | return $fields; |
| 307 | 307 | } |
| 308 | 308 | |
| 309 | - /* |
|
| 309 | + /* |
|
| 310 | 310 | |-------------------------------------------------------------------------- |
| 311 | 311 | | DELETE |
| 312 | 312 | |-------------------------------------------------------------------------- |
@@ -391,7 +391,7 @@ discard block |
||
| 391 | 391 | return $this->reorder; |
| 392 | 392 | } |
| 393 | 393 | |
| 394 | - /* |
|
| 394 | + /* |
|
| 395 | 395 | |-------------------------------------------------------------------------- |
| 396 | 396 | | CRUD ACCESS |
| 397 | 397 | |-------------------------------------------------------------------------- |
@@ -921,7 +921,7 @@ discard block |
||
| 921 | 921 | { |
| 922 | 922 | $this->getDbColumnTypes(); |
| 923 | 923 | |
| 924 | - array_map(function ($field) { |
|
| 924 | + array_map(function($field) { |
|
| 925 | 925 | // $this->labels[$field] = $this->makeLabel($field); |
| 926 | 926 | |
| 927 | 927 | $new_field = [ |
@@ -1182,7 +1182,7 @@ discard block |
||
| 1182 | 1182 | */ |
| 1183 | 1183 | public function getFirstOfItsTypeInArray($type, $array) |
| 1184 | 1184 | { |
| 1185 | - return array_first($array, function ($key, $item) use ($type) { |
|
| 1185 | + return array_first($array, function($key, $item) use ($type) { |
|
| 1186 | 1186 | return $item['type'] == $type; |
| 1187 | 1187 | }); |
| 1188 | 1188 | } |
@@ -1260,7 +1260,7 @@ discard block |
||
| 1260 | 1260 | public function sync($type, $fields, $attributes) |
| 1261 | 1261 | { |
| 1262 | 1262 | if (!empty($this->{$type})) { |
| 1263 | - $this->{$type} = array_map(function ($field) use ($fields, $attributes) { |
|
| 1263 | + $this->{$type} = array_map(function($field) use ($fields, $attributes) { |
|
| 1264 | 1264 | if (in_array($field['name'], (array) $fields)) { |
| 1265 | 1265 | $field = array_merge($field, $attributes); |
| 1266 | 1266 | } |
@@ -1286,7 +1286,7 @@ discard block |
||
| 1286 | 1286 | } |
| 1287 | 1287 | } |
| 1288 | 1288 | |
| 1289 | - return $this->{$items} = array_merge($elements, array_filter($this->{$items}, function ($item) use ($items) {return !in_array($item['name'], $this->sort[$items]); })); |
|
| 1289 | + return $this->{$items} = array_merge($elements, array_filter($this->{$items}, function($item) use ($items) {return !in_array($item['name'], $this->sort[$items]); })); |
|
| 1290 | 1290 | } |
| 1291 | 1291 | |
| 1292 | 1292 | return $this->{$items}; |