@@ -63,7 +63,7 @@ |
||
63 | 63 | |
64 | 64 | /** @var $result Team[] */ |
65 | 65 | $result = array_values($this->teams); |
66 | - usort($result, function ($team1, $team2) { |
|
66 | + usort($result, function($team1, $team2) { |
|
67 | 67 | return !$this->isBetter($team1, $team2); |
68 | 68 | }); |
69 | 69 |
@@ -58,8 +58,8 @@ discard block |
||
58 | 58 | { |
59 | 59 | Route::prefix('judge') |
60 | 60 | // ->middleware('judge') |
61 | - ->namespace($this->namespace) |
|
62 | - ->group(base_path('routes/judge.php')); |
|
61 | + ->namespace($this->namespace) |
|
62 | + ->group(base_path('routes/judge.php')); |
|
63 | 63 | } |
64 | 64 | |
65 | 65 | /** |
@@ -72,15 +72,15 @@ discard block |
||
72 | 72 | protected function mapWebRoutes() |
73 | 73 | { |
74 | 74 | Route::middleware('web') |
75 | - ->namespace($this->namespace) |
|
76 | - ->group(base_path('routes/web.php')); |
|
75 | + ->namespace($this->namespace) |
|
76 | + ->group(base_path('routes/web.php')); |
|
77 | 77 | } |
78 | 78 | |
79 | 79 | private function mapAdminRoutes() |
80 | 80 | { |
81 | 81 | Route::prefix('admin') |
82 | - ->middleware('admin') |
|
83 | - ->namespace($this->namespace) |
|
84 | - ->group(base_path('routes/admin.php')); |
|
82 | + ->middleware('admin') |
|
83 | + ->namespace($this->namespace) |
|
84 | + ->group(base_path('routes/admin.php')); |
|
85 | 85 | } |
86 | 86 | } |