@@ -13,7 +13,7 @@ |
||
13 | 13 | */ |
14 | 14 | public function up() |
15 | 15 | { |
16 | - Schema::create('panel_admins', function (Blueprint $table) { |
|
16 | + Schema::create('panel_admins', function(Blueprint $table) { |
|
17 | 17 | $table->id(); |
18 | 18 | $table->foreignId('user_id')->constrained(); |
19 | 19 | $table->boolean('is_superuser'); |
@@ -99,7 +99,7 @@ discard block |
||
99 | 99 | ]; |
100 | 100 | } |
101 | 101 | |
102 | - private function setCRUDInstance(){ |
|
102 | + private function setCRUDInstance() { |
|
103 | 103 | $modelName = $this->getNameInput(); |
104 | 104 | |
105 | 105 | return $this->crudInstance = getCrudConfig($modelName); |
@@ -122,7 +122,7 @@ discard block |
||
122 | 122 | |
123 | 123 | protected function qualifyModel($model) |
124 | 124 | { |
125 | - if (class_exists($model)){ |
|
125 | + if (class_exists($model)) { |
|
126 | 126 | return $model; |
127 | 127 | } |
128 | 128 |
@@ -23,7 +23,7 @@ |
||
23 | 23 | |
24 | 24 | public static function get($name) |
25 | 25 | { |
26 | - if (!key_exists($name, static::inputClassMap)){ |
|
26 | + if (!key_exists($name, static::inputClassMap)) { |
|
27 | 27 | throw new \Exception("The [$name] input type doesn't exist in input list!"); |
28 | 28 | } |
29 | 29 |
@@ -14,13 +14,13 @@ |
||
14 | 14 | |
15 | 15 | [$class, $method] = $array; |
16 | 16 | |
17 | - if (! class_exists($class)){ |
|
17 | + if (!class_exists($class)) { |
|
18 | 18 | throw new Exception("Class {$class} doesn't exist."); |
19 | 19 | } |
20 | 20 | |
21 | 21 | $method = $method ?: 'handle'; |
22 | 22 | |
23 | - if (! method_exists($class, $method)){ |
|
23 | + if (!method_exists($class, $method)) { |
|
24 | 24 | throw new Exception("Method {$method} doesn't exist on {$class} class."); |
25 | 25 | } |
26 | 26 |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | |
38 | 38 | public function asImage() |
39 | 39 | { |
40 | - if($this->dataStub != 'linked-image.stub'){ |
|
40 | + if ($this->dataStub != 'linked-image.stub') { |
|
41 | 41 | $this->dataStub = 'image.stub'; |
42 | 42 | } |
43 | 43 | |
@@ -164,7 +164,7 @@ discard block |
||
164 | 164 | |
165 | 165 | private function getTitleStubContent() |
166 | 166 | { |
167 | - if ($this->isRelational()){ |
|
167 | + if ($this->isRelational()) { |
|
168 | 168 | return file_get_contents(__DIR__.'/stubs/titles/not-sortable.stub'); |
169 | 169 | } |
170 | 170 | |
@@ -176,7 +176,7 @@ discard block |
||
176 | 176 | return \Str::contains($this->key, '.'); |
177 | 177 | } |
178 | 178 | |
179 | - private function parseRelationalKey($key){ |
|
179 | + private function parseRelationalKey($key) { |
|
180 | 180 | return str_replace('.', '->', $key); |
181 | 181 | } |
182 | 182 |
@@ -15,11 +15,11 @@ |
||
15 | 15 | |
16 | 16 | auth()->shouldUse($defaultGuard); |
17 | 17 | |
18 | - if(auth()->guest()){ |
|
18 | + if (auth()->guest()) { |
|
19 | 19 | return redirect($redirectPath); |
20 | 20 | } |
21 | 21 | |
22 | - if(!AuthFacade::check(auth()->user()->id)){ |
|
22 | + if (!AuthFacade::check(auth()->user()->id)) { |
|
23 | 23 | return redirect($redirectPath); |
24 | 24 | } |
25 | 25 |
@@ -2,8 +2,8 @@ discard block |
||
2 | 2 | |
3 | 3 | use EasyPanel\Contracts\CRUDComponent; |
4 | 4 | |
5 | -if(! function_exists('getRouteName')) { |
|
6 | - function getRouteName(){ |
|
5 | +if (!function_exists('getRouteName')) { |
|
6 | + function getRouteName() { |
|
7 | 7 | $routeName = config('easy_panel.route_prefix'); |
8 | 8 | $routeName = trim($routeName, '/'); |
9 | 9 | $routeName = str_replace('/', '.', $routeName); |
@@ -11,19 +11,19 @@ discard block |
||
11 | 11 | } |
12 | 12 | } |
13 | 13 | |
14 | -if(! function_exists('getCrudConfig')) { |
|
15 | - function getCrudConfig($name){ |
|
14 | +if (!function_exists('getCrudConfig')) { |
|
15 | + function getCrudConfig($name) { |
|
16 | 16 | |
17 | - $crudName=ucfirst($name); |
|
17 | + $crudName = ucfirst($name); |
|
18 | 18 | $namespace = "\\App\\CRUD\\{$crudName}Component"; |
19 | 19 | |
20 | - if (!file_exists(app_path("/CRUD/{$crudName}Component.php")) or !class_exists($namespace)){ |
|
20 | + if (!file_exists(app_path("/CRUD/{$crudName}Component.php")) or !class_exists($namespace)) { |
|
21 | 21 | abort(403, "Class with {$namespace} namespace doesn't exist"); |
22 | 22 | } |
23 | 23 | |
24 | 24 | $instance = app()->make($namespace); |
25 | 25 | |
26 | - if (!$instance instanceof CRUDComponent){ |
|
26 | + if (!$instance instanceof CRUDComponent) { |
|
27 | 27 | abort(403, "{$namespace} should implement CRUDComponent interface"); |
28 | 28 | } |
29 | 29 | |
@@ -31,8 +31,8 @@ discard block |
||
31 | 31 | } |
32 | 32 | } |
33 | 33 | |
34 | -if(! function_exists('crud')) { |
|
35 | - function crud($name){ |
|
34 | +if (!function_exists('crud')) { |
|
35 | + function crud($name) { |
|
36 | 36 | return \EasyPanel\Models\CRUD::query()->where('name', $name)->first(); |
37 | 37 | } |
38 | 38 | } |
@@ -13,7 +13,7 @@ |
||
13 | 13 | { |
14 | 14 | $lang = session()->has('easypanel_lang') |
15 | 15 | ? session()->get('easypanel_lang') |
16 | - : (config('easy_panel.lang') ?? 'en') .'_panel'; |
|
16 | + : (config('easy_panel.lang') ?? 'en').'_panel'; |
|
17 | 17 | |
18 | 18 | App::setLocale($lang); |
19 | 19 |
@@ -11,7 +11,7 @@ discard block |
||
11 | 11 | { |
12 | 12 | $files = collect(static::getFiles()); |
13 | 13 | |
14 | - return $files->mapWithKeys(function ($file, $key){ |
|
14 | + return $files->mapWithKeys(function($file, $key) { |
|
15 | 15 | preg_match('/(\w+)_panel\.json/i', $file, $m); |
16 | 16 | $key = "$m[1]_panel"; |
17 | 17 | $value = Str::upper($m[1]); |
@@ -24,7 +24,7 @@ discard block |
||
24 | 24 | foreach (static::getFiles() as $file) { |
25 | 25 | $decodedFile = json_decode(File::get($file), 1); |
26 | 26 | foreach ($texts as $key => $text) { |
27 | - if (array_key_exists($key, $decodedFile)){ |
|
27 | + if (array_key_exists($key, $decodedFile)) { |
|
28 | 28 | unset($texts[$text]); |
29 | 29 | } |
30 | 30 | } |