@@ -35,7 +35,7 @@ discard block |
||
35 | 35 | |
36 | 36 | protected function showEditPermissions() |
37 | 37 | { |
38 | - $permissionsData = Permission::all(['id', 'name'])->map(function($permission){ |
|
38 | + $permissionsData = Permission::all(['id', 'name'])->map(function($permission) { |
|
39 | 39 | $permission['name'] = trans(ucwords($permission['name'])); |
40 | 40 | |
41 | 41 | return $permission; |
@@ -99,19 +99,19 @@ discard block |
||
99 | 99 | |
100 | 100 | protected function columns() |
101 | 101 | { |
102 | - return $this->columns = $this->columns?: $this->add('Columns'); |
|
102 | + return $this->columns = $this->columns ?: $this->add('Columns'); |
|
103 | 103 | } |
104 | 104 | |
105 | 105 | protected function permissionId() |
106 | 106 | { |
107 | - return $this->app->stickyGet($this->columns()->name)?: $this->getModuleVariable('permission'); |
|
107 | + return $this->app->stickyGet($this->columns()->name) ?: $this->getModuleVariable('permission'); |
|
108 | 108 | } |
109 | 109 | |
110 | 110 | protected function reload($permissionExpression = null) |
111 | 111 | { |
112 | 112 | $columns = $this->columns(); |
113 | 113 | |
114 | - return $this->reload = $this->reload?: new jsReload($columns, [$columns->name => $permissionExpression?: '']); |
|
114 | + return $this->reload = $this->reload ?: new jsReload($columns, [$columns->name => $permissionExpression ?: '']); |
|
115 | 115 | } |
116 | 116 | |
117 | 117 | protected function getModel($array) |
@@ -15,7 +15,7 @@ |
||
15 | 15 | { |
16 | 16 | $this->down(); |
17 | 17 | |
18 | - Schema::create('user_settings', function (Blueprint $table) { |
|
18 | + Schema::create('user_settings', function(Blueprint $table) { |
|
19 | 19 | $table->increments('id'); |
20 | 20 | $table->unsignedInteger('user_id'); |
21 | 21 | $table->string('group', 512); |
@@ -25,7 +25,7 @@ |
||
25 | 25 | */ |
26 | 26 | public function group() |
27 | 27 | { |
28 | - return $this->group?: static::class; |
|
28 | + return $this->group ?: static::class; |
|
29 | 29 | } |
30 | 30 | |
31 | 31 | /** |
@@ -15,14 +15,14 @@ |
||
15 | 15 | { |
16 | 16 | $this->down(); |
17 | 17 | |
18 | - Schema::create('dashboards', function (Blueprint $table) { |
|
18 | + Schema::create('dashboards', function(Blueprint $table) { |
|
19 | 19 | $table->increments('id'); |
20 | 20 | $table->unsignedInteger('user_id'); |
21 | 21 | $table->string('name', 64); |
22 | 22 | $table->smallInteger('position'); |
23 | 23 | }); |
24 | 24 | |
25 | - Schema::create('dashboard_applets', function (Blueprint $table) { |
|
25 | + Schema::create('dashboard_applets', function(Blueprint $table) { |
|
26 | 26 | $table->increments('id'); |
27 | 27 | $table->unsignedInteger('dashboard_id'); |
28 | 28 | $table->string('class', 512); |
@@ -28,7 +28,7 @@ |
||
28 | 28 | $this->set($joint->info())->setAttr('searchkey', strtolower($joint->caption() . ';' . $joint->info())); |
29 | 29 | } |
30 | 30 | else { |
31 | - if (! $this->locked) { |
|
31 | + if (!$this->locked) { |
|
32 | 32 | $this->addControl('close', 'applet-close')->setAttr('title', __('Close applet')); |
33 | 33 | } |
34 | 34 |
@@ -16,21 +16,21 @@ discard block |
||
16 | 16 | $tableNames = config('permission.table_names'); |
17 | 17 | $columnNames = config('permission.column_names'); |
18 | 18 | |
19 | - Schema::create($tableNames['permissions'], function (Blueprint $table) { |
|
19 | + Schema::create($tableNames['permissions'], function(Blueprint $table) { |
|
20 | 20 | $table->bigIncrements('id'); |
21 | 21 | $table->string('name'); |
22 | 22 | $table->string('guard_name'); |
23 | 23 | $table->timestamps(); |
24 | 24 | }); |
25 | 25 | |
26 | - Schema::create($tableNames['roles'], function (Blueprint $table) { |
|
26 | + Schema::create($tableNames['roles'], function(Blueprint $table) { |
|
27 | 27 | $table->bigIncrements('id'); |
28 | 28 | $table->string('name'); |
29 | 29 | $table->string('guard_name'); |
30 | 30 | $table->timestamps(); |
31 | 31 | }); |
32 | 32 | |
33 | - Schema::create($tableNames['model_has_permissions'], function (Blueprint $table) use ($tableNames, $columnNames) { |
|
33 | + Schema::create($tableNames['model_has_permissions'], function(Blueprint $table) use ($tableNames, $columnNames) { |
|
34 | 34 | $table->unsignedBigInteger('permission_id'); |
35 | 35 | |
36 | 36 | $table->string('model_type'); |
@@ -46,7 +46,7 @@ discard block |
||
46 | 46 | 'model_has_permissions_permission_model_type_primary'); |
47 | 47 | }); |
48 | 48 | |
49 | - Schema::create($tableNames['model_has_roles'], function (Blueprint $table) use ($tableNames, $columnNames) { |
|
49 | + Schema::create($tableNames['model_has_roles'], function(Blueprint $table) use ($tableNames, $columnNames) { |
|
50 | 50 | $table->unsignedBigInteger('role_id'); |
51 | 51 | |
52 | 52 | $table->string('model_type'); |
@@ -62,7 +62,7 @@ discard block |
||
62 | 62 | 'model_has_roles_role_model_type_primary'); |
63 | 63 | }); |
64 | 64 | |
65 | - Schema::create($tableNames['role_has_permissions'], function (Blueprint $table) use ($tableNames) { |
|
65 | + Schema::create($tableNames['role_has_permissions'], function(Blueprint $table) use ($tableNames) { |
|
66 | 66 | $table->unsignedBigInteger('permission_id'); |
67 | 67 | $table->unsignedBigInteger('role_id'); |
68 | 68 |
@@ -13,7 +13,7 @@ |
||
13 | 13 | */ |
14 | 14 | public function up() |
15 | 15 | { |
16 | - Schema::create('password_resets', function (Blueprint $table) { |
|
16 | + Schema::create('password_resets', function(Blueprint $table) { |
|
17 | 17 | $table->string('email')->index(); |
18 | 18 | $table->string('token'); |
19 | 19 | $table->timestamp('created_at')->nullable(); |
@@ -13,7 +13,7 @@ |
||
13 | 13 | */ |
14 | 14 | public function up() |
15 | 15 | { |
16 | - Schema::create('users', function (Blueprint $table) { |
|
16 | + Schema::create('users', function(Blueprint $table) { |
|
17 | 17 | $table->bigIncrements('id'); |
18 | 18 | $table->string('name'); |
19 | 19 | $table->string('email')->unique(); |
@@ -50,7 +50,7 @@ |
||
50 | 50 | public static function boot() |
51 | 51 | { |
52 | 52 | // allow Super Admin full access |
53 | - Gate::after(function ($user, $ability) { |
|
53 | + Gate::after(function($user, $ability) { |
|
54 | 54 | return $user->hasRole('Super Admin'); |
55 | 55 | }); |
56 | 56 | } |