@@ -49,9 +49,9 @@ |
||
49 | 49 | return; |
50 | 50 | } |
51 | 51 | |
52 | - foreach ($categories as $category){ |
|
52 | + foreach ($categories as $category) { |
|
53 | 53 | $name = static::stringNormalise($category->name); |
54 | - $filename = 'export/categories/' . $name . '.txt'; |
|
54 | + $filename = 'export/categories/'.$name.'.txt'; |
|
55 | 55 | $accounts = Account::where('status', 1) |
56 | 56 | ->where('category_id', $category->id) |
57 | 57 | ->orderBy('netlogin', 'desc') |
@@ -42,7 +42,7 @@ |
||
42 | 42 | public function handle() |
43 | 43 | { |
44 | 44 | $whitelist = empty($this->option('blacklist')); |
45 | - if ( false === empty($this->option('list'))) { |
|
45 | + if (false === empty($this->option('list'))) { |
|
46 | 46 | $this->exportProxyList($this->option('list'), $whitelist); |
47 | 47 | } else { |
48 | 48 | $this->exportProxyList('domain', $whitelist); |
@@ -49,9 +49,9 @@ |
||
49 | 49 | return; |
50 | 50 | } |
51 | 51 | |
52 | - foreach ($groups as $group){ |
|
52 | + foreach ($groups as $group) { |
|
53 | 53 | $name = static::stringNormalise($group->name); |
54 | - $filename = 'export/groups/' . $name . '.txt'; |
|
54 | + $filename = 'export/groups/'.$name.'.txt'; |
|
55 | 55 | $accounts = Account::where('status', 1) |
56 | 56 | ->where('group_id', $group->id) |
57 | 57 | ->orderBy('netlogin', 'desc') |
@@ -7,27 +7,27 @@ |
||
7 | 7 | class User extends Authenticatable |
8 | 8 | { |
9 | 9 | const USER_STATUS = [ |
10 | - 0 => [ 'text' => 'users.disabled', |
|
10 | + 0 => ['text' => 'users.disabled', |
|
11 | 11 | 'icon' => '', |
12 | - 'unicon' => '' ], |
|
13 | - 1 => [ 'text' => 'users.enabled', |
|
12 | + 'unicon' => ''], |
|
13 | + 1 => ['text' => 'users.enabled', |
|
14 | 14 | 'icon' => 'fa-check', |
15 | - 'unicon' => '' ] |
|
15 | + 'unicon' => ''] |
|
16 | 16 | ]; |
17 | 17 | |
18 | 18 | const USER_LEVEL = [ |
19 | - 1 => [ 'text' => 'users.access.local', |
|
19 | + 1 => ['text' => 'users.access.local', |
|
20 | 20 | 'icon' => 'fa-support', |
21 | - 'unicon' => '' ], |
|
22 | - 3 => [ 'text' => 'users.access.global', |
|
21 | + 'unicon' => ''], |
|
22 | + 3 => ['text' => 'users.access.global', |
|
23 | 23 | 'icon' => 'fa-globe', |
24 | - 'unicon' => '' ], |
|
25 | - 5 => [ 'text' => 'users.access.admin', |
|
24 | + 'unicon' => ''], |
|
25 | + 5 => ['text' => 'users.access.admin', |
|
26 | 26 | 'icon' => 'fa-shield', |
27 | - 'unicon' => '' ], |
|
28 | - 9 => [ 'text' => 'users.access.super', |
|
27 | + 'unicon' => ''], |
|
28 | + 9 => ['text' => 'users.access.super', |
|
29 | 29 | 'icon' => 'fa-rocket', |
30 | - 'unicon' => '' ], |
|
30 | + 'unicon' => ''], |
|
31 | 31 | ]; |
32 | 32 | |
33 | 33 | const SEARCH_CRITERIA = [ |
@@ -15,7 +15,7 @@ |
||
15 | 15 | */ |
16 | 16 | public function handle($request, Closure $next) |
17 | 17 | { |
18 | - if($this->alreadyInstalled() || !config('kleis.installer')) { |
|
18 | + if ($this->alreadyInstalled() || !config('kleis.installer')) { |
|
19 | 19 | return redirect('/'); |
20 | 20 | } |
21 | 21 |
@@ -36,9 +36,9 @@ discard block |
||
36 | 36 | $data = $request->session()->all(); |
37 | 37 | |
38 | 38 | $env = ''; |
39 | - foreach($data as $key => $value) { |
|
40 | - if(preg_match('/^[A-Z]+_[A-Z]+$/', $key)) { |
|
41 | - $env .= "${key}=${value}" . PHP_EOL; |
|
39 | + foreach ($data as $key => $value) { |
|
40 | + if (preg_match('/^[A-Z]+_[A-Z]+$/', $key)) { |
|
41 | + $env .= "${key}=${value}".PHP_EOL; |
|
42 | 42 | } |
43 | 43 | } |
44 | 44 | |
@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | |
59 | 59 | try { |
60 | 60 | file_put_contents($this->envPath, $request->get('envConfig')); |
61 | - } catch(Exception $e) { |
|
61 | + } catch (Exception $e) { |
|
62 | 62 | $status = false; |
63 | 63 | } |
64 | 64 |
@@ -15,11 +15,11 @@ |
||
15 | 15 | { |
16 | 16 | $results = []; |
17 | 17 | |
18 | - foreach($requirements as $requirement) |
|
18 | + foreach ($requirements as $requirement) |
|
19 | 19 | { |
20 | 20 | $results['requirements'][$requirement] = true; |
21 | 21 | |
22 | - if(!extension_loaded($requirement)) |
|
22 | + if (!extension_loaded($requirement)) |
|
23 | 23 | { |
24 | 24 | $results['requirements'][$requirement] = false; |
25 | 25 |
@@ -29,9 +29,9 @@ |
||
29 | 29 | */ |
30 | 30 | public function check(array $folders) |
31 | 31 | { |
32 | - foreach($folders as $folder => $permission) |
|
32 | + foreach ($folders as $folder => $permission) |
|
33 | 33 | { |
34 | - if(!($this->getPermission($folder) >= $permission)) |
|
34 | + if (!($this->getPermission($folder) >= $permission)) |
|
35 | 35 | { |
36 | 36 | $this->addFileAndSetErrors($folder, $permission, false); |
37 | 37 | } |
@@ -29,10 +29,10 @@ discard block |
||
29 | 29 | */ |
30 | 30 | private function migrate() |
31 | 31 | { |
32 | - try{ |
|
33 | - Artisan::call('migrate', ["--force"=> true ]); |
|
32 | + try { |
|
33 | + Artisan::call('migrate', ["--force"=> true]); |
|
34 | 34 | } |
35 | - catch(Exception $e){ |
|
35 | + catch (Exception $e) { |
|
36 | 36 | return $this->response($e->getMessage()); |
37 | 37 | } |
38 | 38 | |
@@ -46,10 +46,10 @@ discard block |
||
46 | 46 | */ |
47 | 47 | private function seed() |
48 | 48 | { |
49 | - try{ |
|
49 | + try { |
|
50 | 50 | Artisan::call('db:seed'); |
51 | 51 | } |
52 | - catch(Exception $e){ |
|
52 | + catch (Exception $e) { |
|
53 | 53 | return $this->response($e->getMessage()); |
54 | 54 | } |
55 | 55 | |
@@ -76,9 +76,9 @@ discard block |
||
76 | 76 | */ |
77 | 77 | private function sqlite() |
78 | 78 | { |
79 | - if(DB::connection() instanceof SQLiteConnection) { |
|
79 | + if (DB::connection() instanceof SQLiteConnection) { |
|
80 | 80 | $database = DB::connection()->getDatabaseName(); |
81 | - if(!file_exists($database)) { |
|
81 | + if (!file_exists($database)) { |
|
82 | 82 | touch($database); |
83 | 83 | DB::reconnect(Config::get('database.default')); |
84 | 84 | } |