@@ -31,7 +31,7 @@ |
||
| 31 | 31 | askForUserName: |
| 32 | 32 | $username = $this->askWithCompletion('Please enter a username who needs to reset his password', $users->pluck('username')->toArray()); |
| 33 | 33 | |
| 34 | - $user = $users->first(function ($user) use ($username) { |
|
| 34 | + $user = $users->first(function($user) use ($username) { |
|
| 35 | 35 | return $user->username == $username; |
| 36 | 36 | }); |
| 37 | 37 | |
@@ -85,7 +85,7 @@ discard block |
||
| 85 | 85 | */ |
| 86 | 86 | public function disableFilterButton() |
| 87 | 87 | { |
| 88 | - $this->tools = $this->tools->reject(function ($tool) { |
|
| 88 | + $this->tools = $this->tools->reject(function($tool) { |
|
| 89 | 89 | return $tool instanceof FilterButton; |
| 90 | 90 | }); |
| 91 | 91 | } |
@@ -97,7 +97,7 @@ discard block |
||
| 97 | 97 | */ |
| 98 | 98 | public function disableRefreshButton() |
| 99 | 99 | { |
| 100 | - $this->tools = $this->tools->reject(function ($tool) { |
|
| 100 | + $this->tools = $this->tools->reject(function($tool) { |
|
| 101 | 101 | return $tool instanceof RefreshButton; |
| 102 | 102 | }); |
| 103 | 103 | } |
@@ -109,7 +109,7 @@ discard block |
||
| 109 | 109 | */ |
| 110 | 110 | public function disableBatchActions() |
| 111 | 111 | { |
| 112 | - $this->tools = $this->tools->reject(function ($tool) { |
|
| 112 | + $this->tools = $this->tools->reject(function($tool) { |
|
| 113 | 113 | return $tool instanceof BatchActions; |
| 114 | 114 | }); |
| 115 | 115 | } |
@@ -119,7 +119,7 @@ discard block |
||
| 119 | 119 | */ |
| 120 | 120 | public function batch(\Closure $closure) |
| 121 | 121 | { |
| 122 | - call_user_func($closure, $this->tools->first(function ($tool) { |
|
| 122 | + call_user_func($closure, $this->tools->first(function($tool) { |
|
| 123 | 123 | return $tool instanceof BatchActions; |
| 124 | 124 | })); |
| 125 | 125 | } |
@@ -131,7 +131,7 @@ discard block |
||
| 131 | 131 | */ |
| 132 | 132 | public function render() |
| 133 | 133 | { |
| 134 | - return $this->tools->map(function ($tool) { |
|
| 134 | + return $this->tools->map(function($tool) { |
|
| 135 | 135 | if ($tool instanceof AbstractTool) { |
| 136 | 136 | return $tool->setGrid($this->grid)->render(); |
| 137 | 137 | } |
@@ -56,7 +56,7 @@ |
||
| 56 | 56 | */ |
| 57 | 57 | protected function listAdminCommands() |
| 58 | 58 | { |
| 59 | - $commands = collect(Artisan::all())->mapWithKeys(function ($command, $key) { |
|
| 59 | + $commands = collect(Artisan::all())->mapWithKeys(function($command, $key) { |
|
| 60 | 60 | if (Str::startsWith($key, 'admin:')) { |
| 61 | 61 | return [$key => $command]; |
| 62 | 62 | } |
@@ -70,7 +70,7 @@ discard block |
||
| 70 | 70 | $all = $fields->toArray(); |
| 71 | 71 | |
| 72 | 72 | foreach ($this->form->rows as $row) { |
| 73 | - $rowFields = array_map(function ($field) { |
|
| 73 | + $rowFields = array_map(function($field) { |
|
| 74 | 74 | return $field['element']; |
| 75 | 75 | }, $row->getFields()); |
| 76 | 76 | |
@@ -104,7 +104,7 @@ discard block |
||
| 104 | 104 | public function getTabs() |
| 105 | 105 | { |
| 106 | 106 | // If there is no active tab, then active the first. |
| 107 | - if ($this->tabs->filter(function ($tab) { |
|
| 107 | + if ($this->tabs->filter(function($tab) { |
|
| 108 | 108 | return $tab['active']; |
| 109 | 109 | })->isEmpty()) { |
| 110 | 110 | $first = $this->tabs->first(); |
@@ -225,7 +225,7 @@ discard block |
||
| 225 | 225 | { |
| 226 | 226 | $inputs = array_dot(Input::all()); |
| 227 | 227 | |
| 228 | - $inputs = array_filter($inputs, function ($input) { |
|
| 228 | + $inputs = array_filter($inputs, function($input) { |
|
| 229 | 229 | return $input !== '' && !is_null($input); |
| 230 | 230 | }); |
| 231 | 231 | |
@@ -249,7 +249,7 @@ discard block |
||
| 249 | 249 | $conditions[] = $filter->condition($params); |
| 250 | 250 | } |
| 251 | 251 | |
| 252 | - return tap(array_filter($conditions), function ($conditions) { |
|
| 252 | + return tap(array_filter($conditions), function($conditions) { |
|
| 253 | 253 | if (!empty($conditions)) { |
| 254 | 254 | $this->expand(); |
| 255 | 255 | } |
@@ -267,9 +267,9 @@ discard block |
||
| 267 | 267 | return $inputs; |
| 268 | 268 | } |
| 269 | 269 | |
| 270 | - $inputs = collect($inputs)->filter(function ($input, $key) { |
|
| 270 | + $inputs = collect($inputs)->filter(function($input, $key) { |
|
| 271 | 271 | return starts_with($key, "{$this->name}_"); |
| 272 | - })->mapWithKeys(function ($val, $key) { |
|
| 272 | + })->mapWithKeys(function($val, $key) { |
|
| 273 | 273 | $key = str_replace("{$this->name}_", '', $key); |
| 274 | 274 | |
| 275 | 275 | return [$key => $val]; |
@@ -322,7 +322,7 @@ discard block |
||
| 322 | 322 | */ |
| 323 | 323 | public function scope($key, $label = '') |
| 324 | 324 | { |
| 325 | - return tap(new Scope($key, $label), function (Scope $scope) { |
|
| 325 | + return tap(new Scope($key, $label), function(Scope $scope) { |
|
| 326 | 326 | return $this->scopes->push($scope); |
| 327 | 327 | }); |
| 328 | 328 | } |
@@ -346,7 +346,7 @@ discard block |
||
| 346 | 346 | { |
| 347 | 347 | $key = request(Scope::QUERY_NAME); |
| 348 | 348 | |
| 349 | - return $this->scopes->first(function ($scope) use ($key) { |
|
| 349 | + return $this->scopes->first(function($scope) use ($key) { |
|
| 350 | 350 | return $scope->key == $key; |
| 351 | 351 | }); |
| 352 | 352 | } |
@@ -461,9 +461,9 @@ discard block |
||
| 461 | 461 | |
| 462 | 462 | $columns->push($pageKey); |
| 463 | 463 | |
| 464 | - $groupNames = collect($this->filters)->filter(function ($filter) { |
|
| 464 | + $groupNames = collect($this->filters)->filter(function($filter) { |
|
| 465 | 465 | return $filter instanceof Group; |
| 466 | - })->map(function (AbstractFilter $filter) { |
|
| 466 | + })->map(function(AbstractFilter $filter) { |
|
| 467 | 467 | return "{$filter->getId()}_group"; |
| 468 | 468 | }); |
| 469 | 469 | |
@@ -265,7 +265,7 @@ discard block |
||
| 265 | 265 | * |
| 266 | 266 | * @param $id |
| 267 | 267 | * |
| 268 | - * @return mixed |
|
| 268 | + * @return boolean |
|
| 269 | 269 | */ |
| 270 | 270 | public function destroy($id) |
| 271 | 271 | { |
@@ -369,7 +369,7 @@ discard block |
||
| 369 | 369 | * |
| 370 | 370 | * @param array $data |
| 371 | 371 | * |
| 372 | - * @return mixed |
|
| 372 | + * @return Response|null |
|
| 373 | 373 | */ |
| 374 | 374 | protected function prepare($data = []) |
| 375 | 375 | { |
@@ -429,7 +429,7 @@ discard block |
||
| 429 | 429 | /** |
| 430 | 430 | * Call submitted callback. |
| 431 | 431 | * |
| 432 | - * @return mixed |
|
| 432 | + * @return Response|null |
|
| 433 | 433 | */ |
| 434 | 434 | protected function callSubmitted() |
| 435 | 435 | { |
@@ -443,7 +443,7 @@ discard block |
||
| 443 | 443 | /** |
| 444 | 444 | * Call saving callback. |
| 445 | 445 | * |
| 446 | - * @return mixed |
|
| 446 | + * @return Response|null |
|
| 447 | 447 | */ |
| 448 | 448 | protected function callSaving() |
| 449 | 449 | { |
@@ -457,7 +457,7 @@ discard block |
||
| 457 | 457 | /** |
| 458 | 458 | * Callback after saving a Model. |
| 459 | 459 | * |
| 460 | - * @return mixed|null |
|
| 460 | + * @return Response|null |
|
| 461 | 461 | */ |
| 462 | 462 | protected function callSaved() |
| 463 | 463 | { |
@@ -551,7 +551,7 @@ discard block |
||
| 551 | 551 | /** |
| 552 | 552 | * Get RedirectResponse after update. |
| 553 | 553 | * |
| 554 | - * @param mixed $key |
|
| 554 | + * @param integer $key |
|
| 555 | 555 | * |
| 556 | 556 | * @return \Illuminate\Http\RedirectResponse |
| 557 | 557 | */ |
@@ -279,7 +279,7 @@ discard block |
||
| 279 | 279 | { |
| 280 | 280 | $ids = explode(',', $id); |
| 281 | 281 | |
| 282 | - collect($ids)->filter()->each(function ($id) { |
|
| 282 | + collect($ids)->filter()->each(function($id) { |
|
| 283 | 283 | $this->deleteFiles($id); |
| 284 | 284 | $this->model()->find($id)->delete(); |
| 285 | 285 | }); |
@@ -304,9 +304,9 @@ discard block |
||
| 304 | 304 | ->with($this->getRelations()) |
| 305 | 305 | ->findOrFail($id)->toArray(); |
| 306 | 306 | |
| 307 | - $this->builder->fields()->filter(function ($field) { |
|
| 307 | + $this->builder->fields()->filter(function($field) { |
|
| 308 | 308 | return $field instanceof Field\File; |
| 309 | - })->each(function (Field\File $file) use ($data) { |
|
| 309 | + })->each(function(Field\File $file) use ($data) { |
|
| 310 | 310 | $file->setOriginal($data); |
| 311 | 311 | |
| 312 | 312 | $file->destroy(); |
@@ -331,7 +331,7 @@ discard block |
||
| 331 | 331 | return $response; |
| 332 | 332 | } |
| 333 | 333 | |
| 334 | - DB::transaction(function () { |
|
| 334 | + DB::transaction(function() { |
|
| 335 | 335 | $inserts = $this->prepareInsert($this->updates); |
| 336 | 336 | |
| 337 | 337 | foreach ($inserts as $column => $value) { |
@@ -522,7 +522,7 @@ discard block |
||
| 522 | 522 | return $response; |
| 523 | 523 | } |
| 524 | 524 | |
| 525 | - DB::transaction(function () { |
|
| 525 | + DB::transaction(function() { |
|
| 526 | 526 | $updates = $this->prepareUpdate($this->updates); |
| 527 | 527 | |
| 528 | 528 | foreach ($updates as $column => $value) { |
@@ -957,7 +957,7 @@ discard block |
||
| 957 | 957 | protected function getFieldByColumn($column) |
| 958 | 958 | { |
| 959 | 959 | return $this->builder->fields()->first( |
| 960 | - function (Field $field) use ($column) { |
|
| 960 | + function(Field $field) use ($column) { |
|
| 961 | 961 | if (is_array($field->column())) { |
| 962 | 962 | return in_array($column, $field->column()); |
| 963 | 963 | } |
@@ -978,7 +978,7 @@ discard block |
||
| 978 | 978 | |
| 979 | 979 | $values = $this->model->toArray(); |
| 980 | 980 | |
| 981 | - $this->builder->fields()->each(function (Field $field) use ($values) { |
|
| 981 | + $this->builder->fields()->each(function(Field $field) use ($values) { |
|
| 982 | 982 | $field->setOriginal($values); |
| 983 | 983 | }); |
| 984 | 984 | } |
@@ -1000,7 +1000,7 @@ discard block |
||
| 1000 | 1000 | |
| 1001 | 1001 | $data = $this->model->toArray(); |
| 1002 | 1002 | |
| 1003 | - $this->builder->fields()->each(function (Field $field) use ($data) { |
|
| 1003 | + $this->builder->fields()->each(function(Field $field) use ($data) { |
|
| 1004 | 1004 | if (!in_array($field->column(), $this->ignored)) { |
| 1005 | 1005 | $field->fill($data); |
| 1006 | 1006 | } |
@@ -1123,7 +1123,7 @@ discard block |
||
| 1123 | 1123 | */ |
| 1124 | 1124 | public function setWidth($fieldWidth = 8, $labelWidth = 2) |
| 1125 | 1125 | { |
| 1126 | - $this->builder()->fields()->each(function ($field) use ($fieldWidth, $labelWidth) { |
|
| 1126 | + $this->builder()->fields()->each(function($field) use ($fieldWidth, $labelWidth) { |
|
| 1127 | 1127 | /* @var Field $field */ |
| 1128 | 1128 | $field->setWidth($fieldWidth, $labelWidth); |
| 1129 | 1129 | }); |
@@ -1384,7 +1384,7 @@ discard block |
||
| 1384 | 1384 | */ |
| 1385 | 1385 | public static function alias($field, $alias) |
| 1386 | 1386 | { |
| 1387 | - static::$fieldAlias[$alias] = $field; |
|
| 1387 | + static::$fieldAlias[$alias] = $field; |
|
| 1388 | 1388 | } |
| 1389 | 1389 | |
| 1390 | 1390 | /** |
@@ -208,7 +208,7 @@ discard block |
||
| 208 | 208 | /** |
| 209 | 209 | * Field constructor. |
| 210 | 210 | * |
| 211 | - * @param $column |
|
| 211 | + * @param string $column |
|
| 212 | 212 | * @param array $arguments |
| 213 | 213 | */ |
| 214 | 214 | public function __construct($column, $arguments = []) |
@@ -342,7 +342,7 @@ discard block |
||
| 342 | 342 | /** |
| 343 | 343 | * custom format form column data when edit. |
| 344 | 344 | * |
| 345 | - * @param Closure $call |
|
| 345 | + * @param \Closure $call |
|
| 346 | 346 | * |
| 347 | 347 | * @return [null] |
| 348 | 348 | */ |
@@ -422,7 +422,7 @@ discard block |
||
| 422 | 422 | /** |
| 423 | 423 | * Get or set rules. |
| 424 | 424 | * |
| 425 | - * @param null $rules |
|
| 425 | + * @param string $rules |
|
| 426 | 426 | * @param array $messages |
| 427 | 427 | * |
| 428 | 428 | * @return $this |
@@ -520,7 +520,7 @@ discard block |
||
| 520 | 520 | /** |
| 521 | 521 | * Set or get value of the field. |
| 522 | 522 | * |
| 523 | - * @param null $value |
|
| 523 | + * @param string $value |
|
| 524 | 524 | * |
| 525 | 525 | * @return mixed |
| 526 | 526 | */ |
@@ -673,7 +673,7 @@ discard block |
||
| 673 | 673 | /** |
| 674 | 674 | * Add html attributes to elements. |
| 675 | 675 | * |
| 676 | - * @param array|string $attribute |
|
| 676 | + * @param string $attribute |
|
| 677 | 677 | * @param mixed $value |
| 678 | 678 | * |
| 679 | 679 | * @return $this |
@@ -19,7 +19,7 @@ discard block |
||
| 19 | 19 | require $bootstrap; |
| 20 | 20 | } |
| 21 | 21 | |
| 22 | - if (! empty(Admin::$booting)) { |
|
| 22 | + if (!empty(Admin::$booting)) { |
|
| 23 | 23 | foreach (Admin::$booting as $callable) { |
| 24 | 24 | call_user_func($callable); |
| 25 | 25 | } |
@@ -27,7 +27,7 @@ discard block |
||
| 27 | 27 | |
| 28 | 28 | $this->injectFormAssets(); |
| 29 | 29 | |
| 30 | - if (! empty(Admin::$booted)) { |
|
| 30 | + if (!empty(Admin::$booted)) { |
|
| 31 | 31 | foreach (Admin::$booted as $callable) { |
| 32 | 32 | call_user_func($callable); |
| 33 | 33 | } |