@@ -52,8 +52,8 @@ discard block |
||
52 | 52 | protected function mapWebRoutes() |
53 | 53 | { |
54 | 54 | Route::middleware('web') |
55 | - ->namespace($this->namespace) |
|
56 | - ->group(base_path('routes/web.php')); |
|
55 | + ->namespace($this->namespace) |
|
56 | + ->group(base_path('routes/web.php')); |
|
57 | 57 | } |
58 | 58 | |
59 | 59 | /** |
@@ -66,8 +66,8 @@ discard block |
||
66 | 66 | protected function mapApiRoutes() |
67 | 67 | { |
68 | 68 | Route::prefix('api') |
69 | - ->middleware('api') |
|
70 | - ->namespace($this->namespace) |
|
71 | - ->group(base_path('routes/api.php')); |
|
69 | + ->middleware('api') |
|
70 | + ->namespace($this->namespace) |
|
71 | + ->group(base_path('routes/api.php')); |
|
72 | 72 | } |
73 | 73 | } |
@@ -14,7 +14,7 @@ discard block |
||
14 | 14 | $statusCode=200; |
15 | 15 | } |
16 | 16 | $output=[ |
17 | - 'ret' => $statusCode, |
|
17 | + 'ret' => $statusCode, |
|
18 | 18 | 'desc' => is_null($desc) ? self::desc($statusCode) : $desc, |
19 | 19 | 'data' => $data |
20 | 20 | ]; |
@@ -27,7 +27,7 @@ discard block |
||
27 | 27 | $statusCode=1000; |
28 | 28 | } |
29 | 29 | $output=[ |
30 | - 'ret' => $statusCode, |
|
30 | + 'ret' => $statusCode, |
|
31 | 31 | 'desc' => is_null($desc) ? self::desc($statusCode) : $desc, |
32 | 32 | 'data' => $data |
33 | 33 | ]; |
@@ -44,9 +44,9 @@ discard block |
||
44 | 44 | '451' => "Unavailable For Legal Reasons", |
45 | 45 | |
46 | 46 | '1000' => "Unspecified Response", /** Under normal condictions those errors shouldn't been displayed to end users |
47 | - * unless they attempt to do so, some submissions should be intercepted |
|
48 | - * by the frontend before the request sended |
|
49 | - */ |
|
47 | + * unless they attempt to do so, some submissions should be intercepted |
|
48 | + * by the frontend before the request sended |
|
49 | + */ |
|
50 | 50 | '1001' => "Internal Sever Error", |
51 | 51 | '1002' => "Service Currently Unavailable", |
52 | 52 | '1003' => "Missing Params", |
@@ -152,7 +152,7 @@ discard block |
||
152 | 152 | ->where( |
153 | 153 | function ($query) { |
154 | 154 | $query->where('public', 1) |
155 | - ->where('audit', 1); |
|
155 | + ->where('audit', 1); |
|
156 | 156 | } |
157 | 157 | ) |
158 | 158 | ->orWhere( |
@@ -161,15 +161,15 @@ discard block |
||
161 | 161 | ->where('group_member.role', '>', 0) |
162 | 162 | ->where(function ($query) use ($uid) { |
163 | 163 | $query->where('contest_participant.uid', $uid) |
164 | - ->orWhereNull('contest_participant.uid'); |
|
164 | + ->orWhereNull('contest_participant.uid'); |
|
165 | 165 | }) |
166 | - ->where(function ($query) { |
|
167 | - $query->where('registration', 0) |
|
166 | + ->where(function ($query) { |
|
167 | + $query->where('registration', 0) |
|
168 | 168 | ->orWhere(function ($query) { |
169 | 169 | $query->where('registration', 1) |
170 | - ->whereNotNull('contest_participant.uid'); |
|
170 | + ->whereNotNull('contest_participant.uid'); |
|
171 | 171 | }); |
172 | - }); |
|
172 | + }); |
|
173 | 173 | } |
174 | 174 | ) |
175 | 175 | ->orderBy('contest.begin_time', 'desc') |