@@ -130,12 +130,12 @@ discard block |
||
130 | 130 | } |
131 | 131 | } |
132 | 132 | |
133 | - if(!empty($request->announce)) { |
|
133 | + if (!empty($request->announce)) { |
|
134 | 134 | $filename = 'announce.md'; |
135 | 135 | $mdfile = public_path("markdown/{$filename}"); |
136 | 136 | try { |
137 | 137 | file_put_contents($mdfile, $request->announce); |
138 | - } catch(Exception $e) { |
|
138 | + } catch (Exception $e) { |
|
139 | 139 | return $redirect->route('KleisInstaller::stepCustomization') |
140 | 140 | ->withInput(); |
141 | 141 | } |
@@ -169,7 +169,7 @@ discard block |
||
169 | 169 | { |
170 | 170 | $status = $environmentManager->saveFile($request); |
171 | 171 | |
172 | - if($status) { |
|
172 | + if ($status) { |
|
173 | 173 | return $redirect->route('KleisInstaller::stepRequirements') |
174 | 174 | ->with(['message' => session('message')]); |
175 | 175 | } else { |
@@ -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 | } |
@@ -96,7 +96,7 @@ |
||
96 | 96 | { |
97 | 97 | $category = Category::findOrFail($id); |
98 | 98 | $accounts = $category->accounts()->where('status', 0); |
99 | - if (count($accounts) > 0 ) { |
|
99 | + if (count($accounts) > 0) { |
|
100 | 100 | $accounts->delete(); |
101 | 101 | } |
102 | 102 | return redirect()->back()->with( |
@@ -100,7 +100,7 @@ |
||
100 | 100 | { |
101 | 101 | $group = Group::findOrFail($id); |
102 | 102 | $accounts = Group::Find($id)->accounts()->where('status', 0); |
103 | - if (count($accounts) > 0 ) { |
|
103 | + if (count($accounts) > 0) { |
|
104 | 104 | $accounts->delete(); |
105 | 105 | } |
106 | 106 | return redirect()->back()->with( |
@@ -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 | } |
@@ -10,12 +10,12 @@ |
||
10 | 10 | class Account extends Model |
11 | 11 | { |
12 | 12 | const ACCOUNT_STATUS = [ |
13 | - 0 => [ 'text' => 'accounts.disabled', |
|
13 | + 0 => ['text' => 'accounts.disabled', |
|
14 | 14 | 'icon' => 'fa-ban', |
15 | - 'unicon' => '' ], |
|
16 | - 1 => [ 'text' => 'accounts.enabled', |
|
15 | + 'unicon' => ''], |
|
16 | + 1 => ['text' => 'accounts.enabled', |
|
17 | 17 | 'icon' => 'fa-globe', |
18 | - 'unicon' => '' ] |
|
18 | + 'unicon' => ''] |
|
19 | 19 | ]; |
20 | 20 | |
21 | 21 | const SEARCH_CRITERIA = [ |
@@ -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 |
@@ -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(); |