@@ -42,12 +42,12 @@ discard block |
||
42 | 42 | |
43 | 43 | private function accountSummary() |
44 | 44 | { |
45 | - $list = [ 'total' => 0, 'summary' => []]; |
|
45 | + $list = ['total' => 0, 'summary' => []]; |
|
46 | 46 | $categories = Category::orderBy('name', 'asc')->get(); |
47 | 47 | foreach ($categories as $category) { |
48 | 48 | $count = Account::where('category_id', $category->id)->count(); |
49 | 49 | if ($count) { |
50 | - $list['summary'][]= [ |
|
50 | + $list['summary'][] = [ |
|
51 | 51 | 'count' => $count, |
52 | 52 | 'text' => $category->name |
53 | 53 | ]; |
@@ -59,11 +59,11 @@ discard block |
||
59 | 59 | |
60 | 60 | private function groupSummary() |
61 | 61 | { |
62 | - $list = [ 'total' => 0, 'summary' => []]; |
|
62 | + $list = ['total' => 0, 'summary' => []]; |
|
63 | 63 | $groups = Group::orderBy('name', 'asc')->get(); |
64 | 64 | foreach ($groups as $group) { |
65 | 65 | $count = Account::where('group_id', $group->id)->count(); |
66 | - $list['summary'][]= [ |
|
66 | + $list['summary'][] = [ |
|
67 | 67 | 'count' => $count, |
68 | 68 | 'text' => $group->name |
69 | 69 | ]; |
@@ -74,11 +74,11 @@ discard block |
||
74 | 74 | |
75 | 75 | private function categorySummary() |
76 | 76 | { |
77 | - $list = [ 'total' => 0, 'summary' => []]; |
|
77 | + $list = ['total' => 0, 'summary' => []]; |
|
78 | 78 | $categories = Category::get(); |
79 | 79 | foreach ($categories as $category) { |
80 | 80 | $count = Account::where('category_id', $category->id)->count(); |
81 | - $list['summary'][]= [ |
|
81 | + $list['summary'][] = [ |
|
82 | 82 | 'count' => $count, |
83 | 83 | 'text' => $category->name |
84 | 84 | ]; |
@@ -89,12 +89,12 @@ discard block |
||
89 | 89 | |
90 | 90 | private function listSummary() |
91 | 91 | { |
92 | - $list = [ 'total' => 0, 'summary' => [] ]; |
|
93 | - $types = [ 'domain', 'url' ]; |
|
92 | + $list = ['total' => 0, 'summary' => []]; |
|
93 | + $types = ['domain', 'url']; |
|
94 | 94 | foreach ($types as $type) { |
95 | 95 | $count = ProxyListItem::where('type', $type)->count(); |
96 | 96 | if ($count) { |
97 | - $list['summary'][]= [ |
|
97 | + $list['summary'][] = [ |
|
98 | 98 | 'count' => $count, |
99 | 99 | 'text' => "{$type}s" |
100 | 100 | ]; |
@@ -106,11 +106,11 @@ discard block |
||
106 | 106 | |
107 | 107 | private function userSummary() |
108 | 108 | { |
109 | - $list = [ 'total' => 0, 'summary' => []]; |
|
109 | + $list = ['total' => 0, 'summary' => []]; |
|
110 | 110 | foreach (User::USER_LEVEL as $id => $level) { |
111 | 111 | $count = User::where('level', $id)->count(); |
112 | 112 | if ($count) { |
113 | - $list['summary'][]= [ |
|
113 | + $list['summary'][] = [ |
|
114 | 114 | 'count' => $count, |
115 | 115 | 'text' => $level['text'] |
116 | 116 | ]; |
@@ -9,7 +9,7 @@ discard block |
||
9 | 9 | |
10 | 10 | public function search(&$entities, $type = null, $search = null) |
11 | 11 | { |
12 | - $reflection = new ReflectionProperty($entities, 'model'); |
|
12 | + $reflection = new ReflectionProperty($entities, 'model'); |
|
13 | 13 | $reflection->setAccessible(true); |
14 | 14 | $classname = $reflection->getValue($entities); |
15 | 15 | |
@@ -20,14 +20,14 @@ discard block |
||
20 | 20 | $criteria = explode(' ', $search); |
21 | 21 | $columns = $classname::SEARCH_CRITERIA[$type]; |
22 | 22 | |
23 | - $entities = $entities->where( function($q) use ($columns, $criteria) { |
|
23 | + $entities = $entities->where(function($q) use ($columns, $criteria) { |
|
24 | 24 | foreach ($columns as $column) { |
25 | 25 | if (is_array($column)) { |
26 | 26 | $relation = $column; |
27 | - foreach($relation as $table => $column) { |
|
27 | + foreach ($relation as $table => $column) { |
|
28 | 28 | $q->whereHas($table, |
29 | 29 | function($query) use ($column, $criteria) { |
30 | - foreach($criteria as $value) { |
|
30 | + foreach ($criteria as $value) { |
|
31 | 31 | $query->orWhere($column, 'LIKE', $value); |
32 | 32 | } |
33 | 33 | } |
@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | } else { |
37 | 37 | $q->orWhere( |
38 | 38 | function($query) use ($column, $criteria) { |
39 | - foreach($criteria as $value) { |
|
39 | + foreach ($criteria as $value) { |
|
40 | 40 | $query->orWhere($column, 'LIKE', $value); |
41 | 41 | } |
42 | 42 | } |
@@ -54,7 +54,7 @@ |
||
54 | 54 | { |
55 | 55 | $router->group([ |
56 | 56 | 'namespace' => $this->namespace, 'middleware' => 'web', |
57 | - ], function ($router) { |
|
57 | + ], function($router) { |
|
58 | 58 | require app_path('Http/routes.php'); |
59 | 59 | }); |
60 | 60 | } |
@@ -11,7 +11,7 @@ |
||
11 | 11 | | |
12 | 12 | */ |
13 | 13 | |
14 | -Route::group(['middleware' => 'installed'], function () { |
|
14 | +Route::group(['middleware' => 'installed'], function() { |
|
15 | 15 | |
16 | 16 | Route::auth(); |
17 | 17 |
@@ -27,7 +27,7 @@ |
||
27 | 27 | } |
28 | 28 | } |
29 | 29 | $view->with('enable', $enable) |
30 | - ->with('title', $title) |
|
31 | - ->with('contents', $contents); |
|
30 | + ->with('title', $title) |
|
31 | + ->with('contents', $contents); |
|
32 | 32 | } |
33 | 33 | } |
@@ -20,7 +20,7 @@ |
||
20 | 20 | $contents = ''; |
21 | 21 | if (config('kleis.legal_notice')) { |
22 | 22 | $mdfile = public_path('markdown/legal/'.config('kleis.legal_notice').'-'.config('app.locale').'.md'); |
23 | - if (file_exists($mdfile)){ |
|
23 | + if (file_exists($mdfile)) { |
|
24 | 24 | list($title, $text) = explode(PHP_EOL, file_get_contents($mdfile), 2); |
25 | 25 | $enable = true; |
26 | 26 | $contents = Markdown::parse($text)->toHtml(); |
@@ -61,7 +61,7 @@ |
||
61 | 61 | /** |
62 | 62 | * Handle an authentication attempt. |
63 | 63 | * |
64 | - * @return Response |
|
64 | + * @return \Illuminate\Http\RedirectResponse|null |
|
65 | 65 | */ |
66 | 66 | public function authenticate(Request $request) |
67 | 67 | { |
@@ -68,10 +68,10 @@ |
||
68 | 68 | $credentials = $request->only('email', 'password'); |
69 | 69 | |
70 | 70 | if (Auth::attempt([ |
71 | - 'email' => $credentials['email'], |
|
72 | - 'password' => $credentials['password'], |
|
73 | - 'status' => App\User::USER_ENABLED |
|
74 | - ])) { |
|
71 | + 'email' => $credentials['email'], |
|
72 | + 'password' => $credentials['password'], |
|
73 | + 'status' => App\User::USER_ENABLED |
|
74 | + ])) { |
|
75 | 75 | // Authentication passed... |
76 | 76 | return redirect()->intended('home'); |
77 | 77 | } |
@@ -15,27 +15,27 @@ |
||
15 | 15 | const USER_ENABLED = 1; |
16 | 16 | |
17 | 17 | const USER_STATUS = [ |
18 | - 0 => [ 'text' => 'users.disabled', |
|
18 | + 0 => ['text' => 'users.disabled', |
|
19 | 19 | 'icon' => '', |
20 | - 'unicon' => '' ], |
|
21 | - 1 => [ 'text' => 'users.enabled', |
|
20 | + 'unicon' => ''], |
|
21 | + 1 => ['text' => 'users.enabled', |
|
22 | 22 | 'icon' => 'fa-check', |
23 | - 'unicon' => '' ] |
|
23 | + 'unicon' => ''] |
|
24 | 24 | ]; |
25 | 25 | |
26 | 26 | const USER_LEVEL = [ |
27 | - 1 => [ 'text' => 'users.access.local', |
|
27 | + 1 => ['text' => 'users.access.local', |
|
28 | 28 | 'icon' => 'fa-support', |
29 | - 'unicon' => '' ], |
|
30 | - 3 => [ 'text' => 'users.access.global', |
|
29 | + 'unicon' => ''], |
|
30 | + 3 => ['text' => 'users.access.global', |
|
31 | 31 | 'icon' => 'fa-globe', |
32 | - 'unicon' => '' ], |
|
33 | - 5 => [ 'text' => 'users.access.admin', |
|
32 | + 'unicon' => ''], |
|
33 | + 5 => ['text' => 'users.access.admin', |
|
34 | 34 | 'icon' => 'fa-shield', |
35 | - 'unicon' => '' ], |
|
36 | - 9 => [ 'text' => 'users.access.super', |
|
35 | + 'unicon' => ''], |
|
36 | + 9 => ['text' => 'users.access.super', |
|
37 | 37 | 'icon' => 'fa-rocket', |
38 | - 'unicon' => '' ], |
|
38 | + 'unicon' => ''], |
|
39 | 39 | ]; |
40 | 40 | |
41 | 41 | const SEARCH_CRITERIA = [ |
@@ -101,7 +101,7 @@ |
||
101 | 101 | { |
102 | 102 | $group = Group::findOrFail($id); |
103 | 103 | $accounts = Group::Find($id)->accounts()->where('status', Account::ACCOUNT_DISABLE); |
104 | - if (count($accounts) > 0 ) { |
|
104 | + if (count($accounts) > 0) { |
|
105 | 105 | $accounts->delete(); |
106 | 106 | } |
107 | 107 | return redirect()->back()->with( |
@@ -94,7 +94,7 @@ |
||
94 | 94 | { |
95 | 95 | $category = Category::findOrFail($id); |
96 | 96 | $accounts = $category->accounts()->where('status', Account::ACCOUNT_DISABLE); |
97 | - if (count($accounts) > 0 ) { |
|
97 | + if (count($accounts) > 0) { |
|
98 | 98 | $accounts->delete(); |
99 | 99 | } |
100 | 100 | return redirect()->back()->with( |