@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | return $next($request); |
34 | 34 | } |
35 | 35 | |
36 | - if (!Admin::user()->allPermissions()->first(function ($permission) use ($request) { |
|
36 | + if (!Admin::user()->allPermissions()->first(function($permission) use ($request) { |
|
37 | 37 | return $permission->shouldPassThrough($request); |
38 | 38 | })) { |
39 | 39 | Checker::error(); |
@@ -52,7 +52,7 @@ discard block |
||
52 | 52 | */ |
53 | 53 | public function checkRoutePermission(Request $request) |
54 | 54 | { |
55 | - if (!$middleware = collect($request->route()->middleware())->first(function ($middleware) { |
|
55 | + if (!$middleware = collect($request->route()->middleware())->first(function($middleware) { |
|
56 | 56 | return Str::startsWith($middleware, $this->middlewarePrefix); |
57 | 57 | })) { |
58 | 58 | return false; |
@@ -87,7 +87,7 @@ discard block |
||
87 | 87 | |
88 | 88 | return collect($excepts) |
89 | 89 | ->map('admin_base_path') |
90 | - ->contains(function ($except) use ($request) { |
|
90 | + ->contains(function($except) use ($request) { |
|
91 | 91 | if ($except !== '/') { |
92 | 92 | $except = trim($except, '/'); |
93 | 93 | } |
@@ -43,7 +43,7 @@ |
||
43 | 43 | |
44 | 44 | return collect($excepts) |
45 | 45 | ->map('admin_base_path') |
46 | - ->contains(function ($except) use ($request) { |
|
46 | + ->contains(function($except) use ($request) { |
|
47 | 47 | if ($except !== '/') { |
48 | 48 | $except = trim($except, '/'); |
49 | 49 | } |
@@ -21,7 +21,7 @@ discard block |
||
21 | 21 | */ |
22 | 22 | public function up() |
23 | 23 | { |
24 | - Schema::create(config('admin.database.users_table'), function (Blueprint $table) { |
|
24 | + Schema::create(config('admin.database.users_table'), function(Blueprint $table) { |
|
25 | 25 | $table->increments('id'); |
26 | 26 | $table->string('username', 190)->unique(); |
27 | 27 | $table->string('password', 60); |
@@ -31,14 +31,14 @@ discard block |
||
31 | 31 | $table->timestamps(); |
32 | 32 | }); |
33 | 33 | |
34 | - Schema::create(config('admin.database.roles_table'), function (Blueprint $table) { |
|
34 | + Schema::create(config('admin.database.roles_table'), function(Blueprint $table) { |
|
35 | 35 | $table->increments('id'); |
36 | 36 | $table->string('name', 50)->unique(); |
37 | 37 | $table->string('slug', 50); |
38 | 38 | $table->timestamps(); |
39 | 39 | }); |
40 | 40 | |
41 | - Schema::create(config('admin.database.permissions_table'), function (Blueprint $table) { |
|
41 | + Schema::create(config('admin.database.permissions_table'), function(Blueprint $table) { |
|
42 | 42 | $table->increments('id'); |
43 | 43 | $table->string('name', 50)->unique(); |
44 | 44 | $table->string('slug', 50); |
@@ -47,7 +47,7 @@ discard block |
||
47 | 47 | $table->timestamps(); |
48 | 48 | }); |
49 | 49 | |
50 | - Schema::create(config('admin.database.menu_table'), function (Blueprint $table) { |
|
50 | + Schema::create(config('admin.database.menu_table'), function(Blueprint $table) { |
|
51 | 51 | $table->increments('id'); |
52 | 52 | $table->integer('parent_id')->default(0); |
53 | 53 | $table->integer('order')->default(0); |
@@ -59,35 +59,35 @@ discard block |
||
59 | 59 | $table->timestamps(); |
60 | 60 | }); |
61 | 61 | |
62 | - Schema::create(config('admin.database.role_users_table'), function (Blueprint $table) { |
|
62 | + Schema::create(config('admin.database.role_users_table'), function(Blueprint $table) { |
|
63 | 63 | $table->integer('role_id'); |
64 | 64 | $table->integer('user_id'); |
65 | 65 | $table->index(['role_id', 'user_id']); |
66 | 66 | $table->timestamps(); |
67 | 67 | }); |
68 | 68 | |
69 | - Schema::create(config('admin.database.role_permissions_table'), function (Blueprint $table) { |
|
69 | + Schema::create(config('admin.database.role_permissions_table'), function(Blueprint $table) { |
|
70 | 70 | $table->integer('role_id'); |
71 | 71 | $table->integer('permission_id'); |
72 | 72 | $table->index(['role_id', 'permission_id']); |
73 | 73 | $table->timestamps(); |
74 | 74 | }); |
75 | 75 | |
76 | - Schema::create(config('admin.database.user_permissions_table'), function (Blueprint $table) { |
|
76 | + Schema::create(config('admin.database.user_permissions_table'), function(Blueprint $table) { |
|
77 | 77 | $table->integer('user_id'); |
78 | 78 | $table->integer('permission_id'); |
79 | 79 | $table->index(['user_id', 'permission_id']); |
80 | 80 | $table->timestamps(); |
81 | 81 | }); |
82 | 82 | |
83 | - Schema::create(config('admin.database.role_menu_table'), function (Blueprint $table) { |
|
83 | + Schema::create(config('admin.database.role_menu_table'), function(Blueprint $table) { |
|
84 | 84 | $table->integer('role_id'); |
85 | 85 | $table->integer('menu_id'); |
86 | 86 | $table->index(['role_id', 'menu_id']); |
87 | 87 | $table->timestamps(); |
88 | 88 | }); |
89 | 89 | |
90 | - Schema::create(config('admin.database.operation_log_table'), function (Blueprint $table) { |
|
90 | + Schema::create(config('admin.database.operation_log_table'), function(Blueprint $table) { |
|
91 | 91 | $table->increments('id'); |
92 | 92 | $table->integer('user_id'); |
93 | 93 | $table->string('path'); |
@@ -227,7 +227,7 @@ discard block |
||
227 | 227 | /** |
228 | 228 | * Field constructor. |
229 | 229 | * |
230 | - * @param $column |
|
230 | + * @param string $column |
|
231 | 231 | * @param array $arguments |
232 | 232 | */ |
233 | 233 | public function __construct($column, $arguments = []) |
@@ -563,7 +563,7 @@ discard block |
||
563 | 563 | /** |
564 | 564 | * Set or get value of the field. |
565 | 565 | * |
566 | - * @param null $value |
|
566 | + * @param string $value |
|
567 | 567 | * |
568 | 568 | * @return mixed |
569 | 569 | */ |
@@ -734,7 +734,7 @@ discard block |
||
734 | 734 | /** |
735 | 735 | * Add html attributes to elements. |
736 | 736 | * |
737 | - * @param array|string $attribute |
|
737 | + * @param string $attribute |
|
738 | 738 | * @param mixed $value |
739 | 739 | * |
740 | 740 | * @return $this |
@@ -1020,7 +1020,7 @@ discard block |
||
1020 | 1020 | /** |
1021 | 1021 | * Get element class. |
1022 | 1022 | * |
1023 | - * @return array |
|
1023 | + * @return string |
|
1024 | 1024 | */ |
1025 | 1025 | protected function getGroupClass($default = false) |
1026 | 1026 | : string |
@@ -1069,7 +1069,7 @@ discard block |
||
1069 | 1069 | } |
1070 | 1070 | |
1071 | 1071 | /** |
1072 | - * @param array $labelClass |
|
1072 | + * @param string[] $labelClass |
|
1073 | 1073 | * |
1074 | 1074 | * @return self |
1075 | 1075 | */ |
@@ -1122,7 +1122,7 @@ discard block |
||
1122 | 1122 | /** |
1123 | 1123 | * Set view of current field. |
1124 | 1124 | * |
1125 | - * @return string |
|
1125 | + * @return Field |
|
1126 | 1126 | */ |
1127 | 1127 | public function setView($view) |
1128 | 1128 | { |
@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | |
42 | 42 | $this->setupScript(); |
43 | 43 | |
44 | - $lists = $columns->map(function ($val, $key) use ($show) { |
|
44 | + $lists = $columns->map(function($val, $key) use ($show) { |
|
45 | 45 | if (empty($show)) { |
46 | 46 | $checked = 'checked'; |
47 | 47 | } else { |
@@ -92,7 +92,7 @@ discard block |
||
92 | 92 | */ |
93 | 93 | protected function getGridColumns() |
94 | 94 | { |
95 | - return $this->grid->columns()->map(function (Grid\Column $column) { |
|
95 | + return $this->grid->columns()->map(function(Grid\Column $column) { |
|
96 | 96 | $name = $column->getName(); |
97 | 97 | |
98 | 98 | if (in_array($name, ['__row_selector__', '__actions__'])) { |